pyGSTi 0.9.12__tar.gz → 0.9.13__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- pyGSTi-0.9.13/.github/CODEOWNERS +92 -0
- pyGSTi-0.9.13/.github/workflows/autodeploy.yml +83 -0
- pyGSTi-0.9.13/.github/workflows/beta-master.yml +33 -0
- pyGSTi-0.9.13/.github/workflows/develop.yml +52 -0
- pyGSTi-0.9.13/.github/workflows/feature-branches.yml +37 -0
- pyGSTi-0.9.13/.github/workflows/reuseable-main.yml +93 -0
- pyGSTi-0.9.13/.gitignore +147 -0
- pyGSTi-0.9.13/CHANGELOG +461 -0
- pyGSTi-0.9.13/PKG-INFO +57 -0
- pyGSTi-0.9.13/README.md +200 -0
- pyGSTi-0.9.13/jupyter_notebooks/Examples/BootstrappedErrorBars.ipynb +234 -0
- pyGSTi-0.9.13/jupyter_notebooks/Examples/CirqIntegration.ipynb +609 -0
- pyGSTi-0.9.13/jupyter_notebooks/Examples/Leakage.ipynb +401 -0
- pyGSTi-0.9.13/jupyter_notebooks/Examples/QutritGST.ipynb +168 -0
- pyGSTi-0.9.13/jupyter_notebooks/Examples/example_files/dataTemplate_qutrit_maxL=4.txt +775 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/00-Protocols.ipynb +340 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/01-Essential-Objects.ipynb +443 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/02-Using-Essential-Objects.ipynb +504 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/DriftCharacterization.ipynb +380 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Driverfunctions.ipynb +329 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Overview-functionbased.ipynb +124 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Overview.ipynb +155 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Protocols.ipynb +598 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/MirrorCircuitBenchmarks.ipynb +358 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/ModelTesting-functions.ipynb +220 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/ModelTesting.ipynb +272 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/RB-CliffordRB.ipynb +396 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/advanced/CliffordRB-Simulation-ImplicitModel.ipynb +221 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/advanced/GST-FiducialPairReduction.ipynb +390 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/advanced/Time-dependent-GST.ipynb +370 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/objects/ImplicitModel.ipynb +566 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/objects/ModelNoise.ipynb +723 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/objects/advanced/CustomOperator.ipynb +224 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/objects/advanced/CustomPOVM.ipynb +332 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/reporting/ProceduralErrorBars.ipynb +174 -0
- pyGSTi-0.9.13/jupyter_notebooks/Tutorials/reporting/ReportGeneration.ipynb +375 -0
- pyGSTi-0.9.13/optional-requirements.txt +13 -0
- pyGSTi-0.9.13/pyGSTi.egg-info/PKG-INFO +57 -0
- pyGSTi-0.9.13/pyGSTi.egg-info/SOURCES.txt +2142 -0
- pyGSTi-0.9.13/pyGSTi.egg-info/requires.txt +164 -0
- pyGSTi-0.9.13/pygsti/_version.py +16 -0
- pyGSTi-0.9.13/pygsti/algorithms/contract.py +434 -0
- pyGSTi-0.9.13/pygsti/algorithms/core.py +1186 -0
- pyGSTi-0.9.13/pygsti/algorithms/fiducialpairreduction.py +2175 -0
- pyGSTi-0.9.13/pygsti/algorithms/fiducialselection.py +2029 -0
- pyGSTi-0.9.13/pygsti/algorithms/gaugeopt.py +924 -0
- pyGSTi-0.9.13/pygsti/algorithms/germselection.py +5025 -0
- pyGSTi-0.9.13/pygsti/algorithms/mirroring.py +229 -0
- pyGSTi-0.9.13/pygsti/algorithms/randomcircuit.py +2452 -0
- pyGSTi-0.9.13/pygsti/algorithms/rbfit.py +345 -0
- pyGSTi-0.9.13/pygsti/baseobjs/basis.py +1762 -0
- pyGSTi-0.9.13/pygsti/baseobjs/errorgenbasis.py +516 -0
- pyGSTi-0.9.13/pygsti/baseobjs/errorgenspace.py +99 -0
- pyGSTi-0.9.13/pygsti/baseobjs/label.py +2162 -0
- pyGSTi-0.9.13/pygsti/baseobjs/opcalc/fastopcalc.pyx +1038 -0
- pyGSTi-0.9.13/pygsti/baseobjs/polynomial.py +621 -0
- pyGSTi-0.9.13/pygsti/baseobjs/protectedarray.py +170 -0
- pyGSTi-0.9.13/pygsti/baseobjs/statespace.py +1333 -0
- pyGSTi-0.9.13/pygsti/circuits/__init__.py +21 -0
- pyGSTi-0.9.13/pygsti/circuits/circuit.py +4692 -0
- pyGSTi-0.9.13/pygsti/circuits/circuitconstruction.py +934 -0
- pyGSTi-0.9.13/pygsti/circuits/circuitlist.py +249 -0
- pyGSTi-0.9.13/pygsti/circuits/circuitparser/__init__.py +421 -0
- pyGSTi-0.9.13/pygsti/circuits/circuitstructure.py +963 -0
- pyGSTi-0.9.13/pygsti/circuits/cloudcircuitconstruction.py +2568 -0
- pyGSTi-0.9.13/pygsti/data/datacomparator.py +1022 -0
- pyGSTi-0.9.13/pygsti/data/dataset.py +3249 -0
- pyGSTi-0.9.13/pygsti/data/hypothesistest.py +459 -0
- pyGSTi-0.9.13/pygsti/drivers/bootstrap.py +494 -0
- pyGSTi-0.9.13/pygsti/drivers/longsequence.py +938 -0
- pyGSTi-0.9.13/pygsti/evotypes/chp/opreps.py +218 -0
- pyGSTi-0.9.13/pygsti/evotypes/chp/statereps.py +79 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx/effectcreps.cpp +200 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx/effectreps.pyx +191 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx/opreps.pyx +764 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx/statereps.pyx +180 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx_slow/effectreps.py +179 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx_slow/opreps.py +507 -0
- pyGSTi-0.9.13/pygsti/evotypes/densitymx_slow/statereps.py +167 -0
- pyGSTi-0.9.13/pygsti/evotypes/evotype.py +256 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer/effectreps.pyx +89 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer/opreps.pyx +266 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer/statereps.pyx +162 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer/termreps.pyx +109 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer_slow/effectreps.py +70 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer_slow/opreps.py +217 -0
- pyGSTi-0.9.13/pygsti/evotypes/stabilizer_slow/statereps.py +117 -0
- pyGSTi-0.9.13/pygsti/evotypes/statevec/effectreps.pyx +195 -0
- pyGSTi-0.9.13/pygsti/evotypes/statevec/opreps.pyx +474 -0
- pyGSTi-0.9.13/pygsti/evotypes/statevec/statereps.pyx +167 -0
- pyGSTi-0.9.13/pygsti/evotypes/statevec/termreps.pyx +167 -0
- pyGSTi-0.9.13/pygsti/evotypes/statevec_slow/effectreps.py +189 -0
- pyGSTi-0.9.13/pygsti/evotypes/statevec_slow/opreps.py +454 -0
- pyGSTi-0.9.13/pygsti/extras/__init__.py +12 -0
- pyGSTi-0.9.13/pygsti/extras/drift/signal.py +820 -0
- pyGSTi-0.9.13/pygsti/extras/drift/stabilityanalyzer.py +2007 -0
- pyGSTi-0.9.13/pygsti/extras/interpygate/__init__.py +24 -0
- pyGSTi-0.9.13/pygsti/extras/interpygate/core.py +662 -0
- pyGSTi-0.9.13/pygsti/extras/interpygate/process_tomography.py +199 -0
- pyGSTi-0.9.13/pygsti/extras/rpe/rpeconstruction.py +318 -0
- pyGSTi-0.9.13/pygsti/forwardsims/__init__.py +18 -0
- pyGSTi-0.9.13/pygsti/forwardsims/forwardsim.py +899 -0
- pyGSTi-0.9.13/pygsti/forwardsims/mapforwardsim.py +770 -0
- pyGSTi-0.9.13/pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +639 -0
- pyGSTi-0.9.13/pygsti/forwardsims/mapforwardsim_calc_generic.py +410 -0
- pyGSTi-0.9.13/pygsti/forwardsims/matrixforwardsim.py +2105 -0
- pyGSTi-0.9.13/pygsti/forwardsims/termforwardsim.py +1409 -0
- pyGSTi-0.9.13/pygsti/forwardsims/termforwardsim_calc_statevec.pyx +1533 -0
- pyGSTi-0.9.13/pygsti/forwardsims/torchfwdsim.py +265 -0
- pyGSTi-0.9.13/pygsti/forwardsims/weakforwardsim.py +197 -0
- pyGSTi-0.9.13/pygsti/io/__init__.py +20 -0
- pyGSTi-0.9.13/pygsti/io/mongodb.py +1056 -0
- pyGSTi-0.9.13/pygsti/io/stdinput.py +1291 -0
- pyGSTi-0.9.13/pygsti/layouts/copalayout.py +801 -0
- pyGSTi-0.9.13/pygsti/layouts/distlayout.py +1401 -0
- pyGSTi-0.9.13/pygsti/layouts/maplayout.py +328 -0
- pyGSTi-0.9.13/pygsti/layouts/matrixlayout.py +385 -0
- pyGSTi-0.9.13/pygsti/layouts/prefixtable.py +1817 -0
- pyGSTi-0.9.13/pygsti/layouts/termlayout.py +226 -0
- pyGSTi-0.9.13/pygsti/modelmembers/instruments/instrument.py +395 -0
- pyGSTi-0.9.13/pygsti/modelmembers/instruments/tpinstrument.py +421 -0
- pyGSTi-0.9.13/pygsti/modelmembers/modelmember.py +1118 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/__init__.py +490 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/affineshiftop.py +206 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/composederrorgen.py +784 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/composedop.py +928 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/denseop.py +656 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/eigpdenseop.py +458 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/embeddederrorgen.py +358 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/embeddedop.py +879 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/experrorgenop.py +841 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/fullarbitraryop.py +165 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/fullcptpop.py +333 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/fulltpop.py +218 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/fullunitaryop.py +262 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/lindbladcoefficients.py +1221 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/lindbladerrorgen.py +1597 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/linearop.py +884 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/opfactory.py +870 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/repeatedop.py +249 -0
- pyGSTi-0.9.13/pygsti/modelmembers/operations/staticstdop.py +217 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/__init__.py +516 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/basepovm.py +329 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/complementeffect.py +218 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/composedeffect.py +454 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/computationaleffect.py +327 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/computationalpovm.py +211 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/effect.py +491 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/marginalizedpovm.py +241 -0
- pyGSTi-0.9.13/pygsti/modelmembers/povms/tppovm.py +130 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/__init__.py +439 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/composedstate.py +576 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/computationalstate.py +337 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/cptpstate.py +389 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/densestate.py +370 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/fullpurestate.py +133 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/purestate.py +283 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/state.py +575 -0
- pyGSTi-0.9.13/pygsti/modelmembers/states/tpstate.py +226 -0
- pyGSTi-0.9.13/pygsti/modelmembers/term.py +880 -0
- pyGSTi-0.9.13/pygsti/modelmembers/torchable.py +50 -0
- pyGSTi-0.9.13/pygsti/modelpacks/_modelpack.py +546 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq1Q_ZN.py +71 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XXYYII.py +1170 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XY.py +270 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYI.py +388 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYICNOT.py +416 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYICPHASE.py +422 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYXX.py +343 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYZICNOT.py +578 -0
- pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYZZ.py +343 -0
- pyGSTi-0.9.13/pygsti/modelpacks/stdtarget.py +431 -0
- pyGSTi-0.9.13/pygsti/models/cloudnoisemodel.py +720 -0
- pyGSTi-0.9.13/pygsti/models/explicitcalc.py +840 -0
- pyGSTi-0.9.13/pygsti/models/explicitmodel.py +1734 -0
- pyGSTi-0.9.13/pygsti/models/fogistore.py +591 -0
- pyGSTi-0.9.13/pygsti/models/localnoisemodel.py +614 -0
- pyGSTi-0.9.13/pygsti/models/memberdict.py +377 -0
- pyGSTi-0.9.13/pygsti/models/model.py +2994 -0
- pyGSTi-0.9.13/pygsti/models/modelconstruction.py +2482 -0
- pyGSTi-0.9.13/pygsti/models/modelnoise.py +1071 -0
- pyGSTi-0.9.13/pygsti/models/modelparaminterposer.py +102 -0
- pyGSTi-0.9.13/pygsti/models/oplessmodel.py +821 -0
- pyGSTi-0.9.13/pygsti/models/qutrit.py +296 -0
- pyGSTi-0.9.13/pygsti/objectivefns/objectivefns.py +6663 -0
- pyGSTi-0.9.13/pygsti/objectivefns/wildcardbudget.py +1175 -0
- pyGSTi-0.9.13/pygsti/optimize/__init__.py +20 -0
- pyGSTi-0.9.13/pygsti/optimize/arraysinterface.py +1296 -0
- pyGSTi-0.9.13/pygsti/optimize/customcg.py +246 -0
- pyGSTi-0.9.13/pygsti/optimize/customlm.py +1355 -0
- pyGSTi-0.9.13/pygsti/optimize/customsolve.py +509 -0
- pyGSTi-0.9.13/pygsti/optimize/optimize.py +804 -0
- pyGSTi-0.9.13/pygsti/optimize/simplerlm.py +841 -0
- pyGSTi-0.9.13/pygsti/optimize/wildcardopt.py +693 -0
- pyGSTi-0.9.13/pygsti/protocols/confidenceregionfactory.py +1276 -0
- pyGSTi-0.9.13/pygsti/protocols/estimate.py +963 -0
- pyGSTi-0.9.13/pygsti/protocols/gst.py +3356 -0
- pyGSTi-0.9.13/pygsti/protocols/modeltest.py +360 -0
- pyGSTi-0.9.13/pygsti/protocols/protocol.py +3229 -0
- pyGSTi-0.9.13/pygsti/protocols/rb.py +1774 -0
- pyGSTi-0.9.13/pygsti/protocols/treenode.py +326 -0
- pyGSTi-0.9.13/pygsti/protocols/vb.py +1032 -0
- pyGSTi-0.9.13/pygsti/protocols/vbdataframe.py +482 -0
- pyGSTi-0.9.13/pygsti/report/factory.py +1745 -0
- pyGSTi-0.9.13/pygsti/report/fogidiagram.py +1381 -0
- pyGSTi-0.9.13/pygsti/report/modelfunction.py +476 -0
- pyGSTi-0.9.13/pygsti/report/mpl_colormaps.py +692 -0
- pyGSTi-0.9.13/pygsti/report/plothelpers.py +370 -0
- pyGSTi-0.9.13/pygsti/report/report.py +459 -0
- pyGSTi-0.9.13/pygsti/report/reportables.py +2608 -0
- pyGSTi-0.9.13/pygsti/report/templates/offline/pygsti_dashboard.css +624 -0
- pyGSTi-0.9.13/pygsti/report/templates/offline/pygsti_dashboard.js +200 -0
- pyGSTi-0.9.13/pygsti/report/workspace.py +3119 -0
- pyGSTi-0.9.13/pygsti/report/workspaceplots.py +3938 -0
- pyGSTi-0.9.13/pygsti/tools/basistools.py +533 -0
- pyGSTi-0.9.13/pygsti/tools/edesigntools.py +883 -0
- pyGSTi-0.9.13/pygsti/tools/fastcalc.pyx +1264 -0
- pyGSTi-0.9.13/pygsti/tools/internalgates.py +836 -0
- pyGSTi-0.9.13/pygsti/tools/jamiolkowski.py +361 -0
- pyGSTi-0.9.13/pygsti/tools/lindbladtools.py +240 -0
- pyGSTi-0.9.13/pygsti/tools/listtools.py +385 -0
- pyGSTi-0.9.13/pygsti/tools/matrixmod2.py +531 -0
- pyGSTi-0.9.13/pygsti/tools/matrixtools.py +2396 -0
- pyGSTi-0.9.13/pygsti/tools/nameddict.py +205 -0
- pyGSTi-0.9.13/pygsti/tools/optools.py +2494 -0
- pyGSTi-0.9.13/pygsti/tools/pdftools.py +73 -0
- pyGSTi-0.9.13/pygsti/tools/rbtheory.py +551 -0
- pyGSTi-0.9.13/pygsti/tools/slicetools.py +403 -0
- pyGSTi-0.9.13/requirements.txt +6 -0
- pyGSTi-0.9.13/rtd-requirements.txt +10 -0
- pyGSTi-0.9.13/scripts/api_names.yaml +3854 -0
- pyGSTi-0.9.13/setup.cfg +17 -0
- pyGSTi-0.9.13/setup.py +514 -0
- pyGSTi-0.9.13/test/performance/mpi_2D_scaling/mpi_test.py +67 -0
- pyGSTi-0.9.13/test/test_packages/algorithms/basecase.py +45 -0
- pyGSTi-0.9.13/test/test_packages/algorithms/test_core.py +60 -0
- pyGSTi-0.9.13/test/test_packages/algorithms/test_fiducialpairreduction.py +83 -0
- pyGSTi-0.9.13/test/test_packages/algorithms/test_fogi_gst.py +381 -0
- pyGSTi-0.9.13/test/test_packages/algorithms/test_germselection.py +183 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/Fake_Dataset_none.txt.cache +0 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/calcMethods1Q.dataset +0 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/calcMethods1Q_redmod.dataset +0 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/idt_nQsequenceCache.pkl +0 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/nqubit_1Q_seqs.json +361 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/nqubit_2Q.dataset +105 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/nqubit_2Q_seqs.json +1247 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/nqubit_2Qterms.cache +1 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/reportgen.dataset +0 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/reportgen2.dataset +0 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_redmod_exact.json +1760 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_redmod_terms.json +1769 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_std_exact.json +1869 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_std_prunedpath.json +1716 -0
- pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_std_terms.json +1716 -0
- pyGSTi-0.9.13/test/test_packages/construction/test_gateconstruction.py +34 -0
- pyGSTi-0.9.13/test/test_packages/drivers/test_calcmethods1Q.py +689 -0
- pyGSTi-0.9.13/test/test_packages/drivers/test_continuousgates.py +126 -0
- pyGSTi-0.9.13/test/test_packages/drivers/test_drivers.py +324 -0
- pyGSTi-0.9.13/test/test_packages/drivers/test_nqubit.py +297 -0
- pyGSTi-0.9.13/test/test_packages/drivers/test_timedep.py +175 -0
- pyGSTi-0.9.13/test/test_packages/extras/test_interpygate.py +339 -0
- pyGSTi-0.9.13/test/test_packages/iotest/test_codecs.py +332 -0
- pyGSTi-0.9.13/test/test_packages/iotest/test_stdinput.py +664 -0
- pyGSTi-0.9.13/test/test_packages/iotest/test_stdinputparser.py +830 -0
- pyGSTi-0.9.13/test/test_packages/objects/test_evaltree.py +64 -0
- pyGSTi-0.9.13/test/test_packages/objects/test_gatesets.py +375 -0
- pyGSTi-0.9.13/test/test_packages/objects/test_hessian.py +403 -0
- pyGSTi-0.9.13/test/test_packages/objects/test_instruments.py +349 -0
- pyGSTi-0.9.13/test/test_packages/report/reportBaseCase.py +164 -0
- pyGSTi-0.9.13/test/test_packages/report/test_report.py +309 -0
- pyGSTi-0.9.13/test/test_packages/reportb/test_workspace.py +711 -0
- pyGSTi-0.9.13/test/test_packages/tools/test_logl.py +89 -0
- pyGSTi-0.9.13/test/unit/algorithms/fixtures.py +90 -0
- pyGSTi-0.9.13/test/unit/algorithms/test_fiducialpairreduction.py +164 -0
- pyGSTi-0.9.13/test/unit/algorithms/test_fiducialselection.py +250 -0
- pyGSTi-0.9.13/test/unit/algorithms/test_gaugeopt.py +226 -0
- pyGSTi-0.9.13/test/unit/algorithms/test_germselection.py +390 -0
- pyGSTi-0.9.13/test/unit/construction/test_modelconstruction.py +818 -0
- pyGSTi-0.9.13/test/unit/construction/test_qutrit.py +19 -0
- pyGSTi-0.9.13/test/unit/drivers/test_longsequence.py +366 -0
- pyGSTi-0.9.13/test/unit/modelmembers/test_kraus_interface.py +261 -0
- pyGSTi-0.9.13/test/unit/modelmembers/test_operation.py +815 -0
- pyGSTi-0.9.13/test/unit/modelmembers/test_spamvec.py +359 -0
- pyGSTi-0.9.13/test/unit/objects/test_circuit.py +792 -0
- pyGSTi-0.9.13/test/unit/objects/test_fogi.py +230 -0
- pyGSTi-0.9.13/test/unit/objects/test_forwardsim.py +361 -0
- pyGSTi-0.9.13/test/unit/objects/test_localnoisemodel.py +134 -0
- pyGSTi-0.9.13/test/unit/objects/test_model.py +705 -0
- pyGSTi-0.9.13/test/unit/objects/test_modelnoise.py +30 -0
- pyGSTi-0.9.13/test/unit/objects/test_objectivefns.py +466 -0
- pyGSTi-0.9.13/test/unit/objects/test_polynomial.py +620 -0
- pyGSTi-0.9.13/test/unit/objects/test_protectedarray.py +49 -0
- pyGSTi-0.9.13/test/unit/optimize/test_simplerlm.py +43 -0
- pyGSTi-0.9.13/test/unit/protocols/test_gst.py +423 -0
- pyGSTi-0.9.13/test/unit/protocols/test_protocols.py +177 -0
- pyGSTi-0.9.13/test/unit/protocols/test_rb.py +721 -0
- pyGSTi-0.9.13/test/unit/tools/test_basisconstructors.py +104 -0
- pyGSTi-0.9.13/test/unit/tools/test_edesigntools.py +295 -0
- pyGSTi-0.9.13/test/unit/tools/test_likelihoodfns.py +86 -0
- pyGSTi-0.9.13/test/unit/tools/test_lindbladtools.py +90 -0
- pyGSTi-0.9.13/test/unit/tools/test_matrixtools.py +194 -0
- pyGSTi-0.9.13/test/unit/tools/test_optools.py +414 -0
- pyGSTi-0.9.13/test/unit/tools/test_opttools.py +66 -0
- pyGSTi-0.9.12/.github/workflows/autodeploy.yml +0 -86
- pyGSTi-0.9.12/.github/workflows/extras.yml +0 -71
- pyGSTi-0.9.12/.github/workflows/main.yml +0 -100
- pyGSTi-0.9.12/.github/workflows/manualdeploy.yml +0 -74
- pyGSTi-0.9.12/.github/workflows/notebook.yml +0 -76
- pyGSTi-0.9.12/.github/workflows/testdeploy.yml +0 -86
- pyGSTi-0.9.12/.gitignore +0 -133
- pyGSTi-0.9.12/CHANGELOG +0 -410
- pyGSTi-0.9.12/PKG-INFO +0 -55
- pyGSTi-0.9.12/README.md +0 -200
- pyGSTi-0.9.12/jupyter_notebooks/Examples/BootstrappedErrorBars.ipynb +0 -243
- pyGSTi-0.9.12/jupyter_notebooks/Examples/CirqIntegration.ipynb +0 -545
- pyGSTi-0.9.12/jupyter_notebooks/Examples/Leakage.ipynb +0 -363
- pyGSTi-0.9.12/jupyter_notebooks/Examples/QutritGST.ipynb +0 -219
- pyGSTi-0.9.12/jupyter_notebooks/Examples/example_files/dataTemplate_qutrit_maxL=4.txt +0 -2018
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/00-Protocols.ipynb +0 -340
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/01-Essential-Objects.ipynb +0 -419
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/02-Using-Essential-Objects.ipynb +0 -504
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/DriftCharacterization.ipynb +0 -370
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/GST-Driverfunctions.ipynb +0 -329
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/GST-Overview-functionbased.ipynb +0 -330
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/GST-Overview.ipynb +0 -155
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/GST-Protocols.ipynb +0 -509
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/MirrorCircuitBenchmarks.ipynb +0 -468
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/ModelTesting-functions.ipynb +0 -219
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/ModelTesting.ipynb +0 -272
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/RB-CliffordRB.ipynb +0 -218
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/advanced/CliffordRB-Simulation-ImplicitModel.ipynb +0 -283
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/advanced/GST-FiducialPairReduction.ipynb +0 -441
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/algorithms/advanced/Time-dependent-GST.ipynb +0 -740
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/objects/ImplicitModel.ipynb +0 -561
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/objects/ModelNoise.ipynb +0 -775
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/objects/advanced/CustomOperator.ipynb +0 -224
- pyGSTi-0.9.12/jupyter_notebooks/Tutorials/reporting/ReportGeneration.ipynb +0 -373
- pyGSTi-0.9.12/optional-requirements.txt +0 -14
- pyGSTi-0.9.12/packages/pygsti/__init__.py +0 -41
- pyGSTi-0.9.12/pyGSTi.egg-info/PKG-INFO +0 -55
- pyGSTi-0.9.12/pyGSTi.egg-info/SOURCES.txt +0 -2169
- pyGSTi-0.9.12/pyGSTi.egg-info/requires.txt +0 -134
- pyGSTi-0.9.12/pygsti/_version.py +0 -16
- pyGSTi-0.9.12/pygsti/algorithms/contract.py +0 -434
- pyGSTi-0.9.12/pygsti/algorithms/core.py +0 -1159
- pyGSTi-0.9.12/pygsti/algorithms/directx.py +0 -711
- pyGSTi-0.9.12/pygsti/algorithms/fiducialpairreduction.py +0 -2190
- pyGSTi-0.9.12/pygsti/algorithms/fiducialselection.py +0 -2020
- pyGSTi-0.9.12/pygsti/algorithms/gaugeopt.py +0 -924
- pyGSTi-0.9.12/pygsti/algorithms/germselection.py +0 -5015
- pyGSTi-0.9.12/pygsti/algorithms/mirroring.py +0 -617
- pyGSTi-0.9.12/pygsti/algorithms/randomcircuit.py +0 -3620
- pyGSTi-0.9.12/pygsti/algorithms/rbfit.py +0 -579
- pyGSTi-0.9.12/pygsti/baseobjs/basis.py +0 -2064
- pyGSTi-0.9.12/pygsti/baseobjs/errorgenbasis.py +0 -648
- pyGSTi-0.9.12/pygsti/baseobjs/errorgenspace.py +0 -109
- pyGSTi-0.9.12/pygsti/baseobjs/label.py +0 -2278
- pyGSTi-0.9.12/pygsti/baseobjs/opcalc/fastopcalc.pyx +0 -1038
- pyGSTi-0.9.12/pygsti/baseobjs/polynomial.py +0 -1203
- pyGSTi-0.9.12/pygsti/baseobjs/protectedarray.py +0 -230
- pyGSTi-0.9.12/pygsti/baseobjs/statespace.py +0 -1332
- pyGSTi-0.9.12/pygsti/circuits/__init__.py +0 -21
- pyGSTi-0.9.12/pygsti/circuits/circuit.py +0 -4443
- pyGSTi-0.9.12/pygsti/circuits/circuitconstruction.py +0 -938
- pyGSTi-0.9.12/pygsti/circuits/circuitlist.py +0 -207
- pyGSTi-0.9.12/pygsti/circuits/circuitparser/__init__.py +0 -421
- pyGSTi-0.9.12/pygsti/circuits/circuitstructure.py +0 -963
- pyGSTi-0.9.12/pygsti/circuits/cloudcircuitconstruction.py +0 -2555
- pyGSTi-0.9.12/pygsti/data/datacomparator.py +0 -1027
- pyGSTi-0.9.12/pygsti/data/dataset.py +0 -3244
- pyGSTi-0.9.12/pygsti/data/hypothesistest.py +0 -466
- pyGSTi-0.9.12/pygsti/drivers/bootstrap.py +0 -543
- pyGSTi-0.9.12/pygsti/drivers/longsequence.py +0 -902
- pyGSTi-0.9.12/pygsti/evotypes/chp/opreps.py +0 -279
- pyGSTi-0.9.12/pygsti/evotypes/chp/statereps.py +0 -111
- pyGSTi-0.9.12/pygsti/evotypes/densitymx/effectcreps.cpp +0 -201
- pyGSTi-0.9.12/pygsti/evotypes/densitymx/effectreps.pyx +0 -191
- pyGSTi-0.9.12/pygsti/evotypes/densitymx/opreps.pyx +0 -764
- pyGSTi-0.9.12/pygsti/evotypes/densitymx/statereps.pyx +0 -180
- pyGSTi-0.9.12/pygsti/evotypes/densitymx_slow/effectreps.py +0 -195
- pyGSTi-0.9.12/pygsti/evotypes/densitymx_slow/opreps.py +0 -514
- pyGSTi-0.9.12/pygsti/evotypes/densitymx_slow/statereps.py +0 -160
- pyGSTi-0.9.12/pygsti/evotypes/evotype.py +0 -219
- pyGSTi-0.9.12/pygsti/evotypes/qibo/__init__.py +0 -33
- pyGSTi-0.9.12/pygsti/evotypes/qibo/effectreps.py +0 -78
- pyGSTi-0.9.12/pygsti/evotypes/qibo/opreps.py +0 -376
- pyGSTi-0.9.12/pygsti/evotypes/qibo/povmreps.py +0 -98
- pyGSTi-0.9.12/pygsti/evotypes/qibo/statereps.py +0 -174
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer/effectreps.pyx +0 -93
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer/opreps.pyx +0 -270
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer/statereps.pyx +0 -166
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer/termreps.pyx +0 -116
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer_slow/effectreps.py +0 -92
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer_slow/opreps.py +0 -221
- pyGSTi-0.9.12/pygsti/evotypes/stabilizer_slow/statereps.py +0 -121
- pyGSTi-0.9.12/pygsti/evotypes/statevec/effectreps.pyx +0 -195
- pyGSTi-0.9.12/pygsti/evotypes/statevec/opreps.pyx +0 -474
- pyGSTi-0.9.12/pygsti/evotypes/statevec/statereps.pyx +0 -167
- pyGSTi-0.9.12/pygsti/evotypes/statevec/termreps.pyx +0 -174
- pyGSTi-0.9.12/pygsti/evotypes/statevec_slow/effectreps.py +0 -192
- pyGSTi-0.9.12/pygsti/evotypes/statevec_slow/opreps.py +0 -459
- pyGSTi-0.9.12/pygsti/extras/__init__.py +0 -13
- pyGSTi-0.9.12/pygsti/extras/drift/signal.py +0 -820
- pyGSTi-0.9.12/pygsti/extras/drift/stabilityanalyzer.py +0 -2005
- pyGSTi-0.9.12/pygsti/extras/interpygate/__init__.py +0 -12
- pyGSTi-0.9.12/pygsti/extras/interpygate/core.py +0 -698
- pyGSTi-0.9.12/pygsti/extras/interpygate/process_tomography.py +0 -165
- pyGSTi-0.9.12/pygsti/extras/rb/__init__.py +0 -13
- pyGSTi-0.9.12/pygsti/extras/rb/benchmarker.py +0 -957
- pyGSTi-0.9.12/pygsti/extras/rb/dataset.py +0 -378
- pyGSTi-0.9.12/pygsti/extras/rb/io.py +0 -814
- pyGSTi-0.9.12/pygsti/extras/rb/simulate.py +0 -1020
- pyGSTi-0.9.12/pygsti/extras/rpe/rpeconstruction.py +0 -320
- pyGSTi-0.9.12/pygsti/forwardsims/__init__.py +0 -17
- pyGSTi-0.9.12/pygsti/forwardsims/forwardsim.py +0 -942
- pyGSTi-0.9.12/pygsti/forwardsims/mapforwardsim.py +0 -712
- pyGSTi-0.9.12/pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +0 -640
- pyGSTi-0.9.12/pygsti/forwardsims/mapforwardsim_calc_generic.py +0 -332
- pyGSTi-0.9.12/pygsti/forwardsims/matrixforwardsim.py +0 -2050
- pyGSTi-0.9.12/pygsti/forwardsims/termforwardsim.py +0 -1511
- pyGSTi-0.9.12/pygsti/forwardsims/termforwardsim_calc_statevec.pyx +0 -2184
- pyGSTi-0.9.12/pygsti/forwardsims/weakforwardsim.py +0 -197
- pyGSTi-0.9.12/pygsti/io/__init__.py +0 -21
- pyGSTi-0.9.12/pygsti/io/legacyio.py +0 -385
- pyGSTi-0.9.12/pygsti/io/mongodb.py +0 -1058
- pyGSTi-0.9.12/pygsti/io/stdinput.py +0 -1307
- pyGSTi-0.9.12/pygsti/layouts/copalayout.py +0 -803
- pyGSTi-0.9.12/pygsti/layouts/distlayout.py +0 -1441
- pyGSTi-0.9.12/pygsti/layouts/maplayout.py +0 -250
- pyGSTi-0.9.12/pygsti/layouts/matrixlayout.py +0 -346
- pyGSTi-0.9.12/pygsti/layouts/prefixtable.py +0 -335
- pyGSTi-0.9.12/pygsti/layouts/termlayout.py +0 -226
- pyGSTi-0.9.12/pygsti/modelmembers/instruments/instrument.py +0 -395
- pyGSTi-0.9.12/pygsti/modelmembers/instruments/tpinstrument.py +0 -421
- pyGSTi-0.9.12/pygsti/modelmembers/modelmember.py +0 -1135
- pyGSTi-0.9.12/pygsti/modelmembers/operations/__init__.py +0 -491
- pyGSTi-0.9.12/pygsti/modelmembers/operations/composederrorgen.py +0 -784
- pyGSTi-0.9.12/pygsti/modelmembers/operations/composedop.py +0 -951
- pyGSTi-0.9.12/pygsti/modelmembers/operations/denseop.py +0 -656
- pyGSTi-0.9.12/pygsti/modelmembers/operations/eigpdenseop.py +0 -458
- pyGSTi-0.9.12/pygsti/modelmembers/operations/embeddederrorgen.py +0 -358
- pyGSTi-0.9.12/pygsti/modelmembers/operations/embeddedop.py +0 -880
- pyGSTi-0.9.12/pygsti/modelmembers/operations/experrorgenop.py +0 -838
- pyGSTi-0.9.12/pygsti/modelmembers/operations/fullarbitraryop.py +0 -164
- pyGSTi-0.9.12/pygsti/modelmembers/operations/fullcptpop.py +0 -333
- pyGSTi-0.9.12/pygsti/modelmembers/operations/fulltpop.py +0 -196
- pyGSTi-0.9.12/pygsti/modelmembers/operations/fullunitaryop.py +0 -261
- pyGSTi-0.9.12/pygsti/modelmembers/operations/lindbladcoefficients.py +0 -1206
- pyGSTi-0.9.12/pygsti/modelmembers/operations/lindbladerrorgen.py +0 -1770
- pyGSTi-0.9.12/pygsti/modelmembers/operations/linearop.py +0 -904
- pyGSTi-0.9.12/pygsti/modelmembers/operations/opfactory.py +0 -870
- pyGSTi-0.9.12/pygsti/modelmembers/operations/repeatedop.py +0 -272
- pyGSTi-0.9.12/pygsti/modelmembers/operations/staticstdop.py +0 -217
- pyGSTi-0.9.12/pygsti/modelmembers/povms/__init__.py +0 -516
- pyGSTi-0.9.12/pygsti/modelmembers/povms/basepovm.py +0 -358
- pyGSTi-0.9.12/pygsti/modelmembers/povms/complementeffect.py +0 -223
- pyGSTi-0.9.12/pygsti/modelmembers/povms/composedeffect.py +0 -774
- pyGSTi-0.9.12/pygsti/modelmembers/povms/computationaleffect.py +0 -327
- pyGSTi-0.9.12/pygsti/modelmembers/povms/computationalpovm.py +0 -209
- pyGSTi-0.9.12/pygsti/modelmembers/povms/denseeffect.py +0 -142
- pyGSTi-0.9.12/pygsti/modelmembers/povms/effect.py +0 -493
- pyGSTi-0.9.12/pygsti/modelmembers/povms/marginalizedpovm.py +0 -319
- pyGSTi-0.9.12/pygsti/modelmembers/povms/tppovm.py +0 -58
- pyGSTi-0.9.12/pygsti/modelmembers/states/__init__.py +0 -442
- pyGSTi-0.9.12/pygsti/modelmembers/states/composedstate.py +0 -893
- pyGSTi-0.9.12/pygsti/modelmembers/states/computationalstate.py +0 -337
- pyGSTi-0.9.12/pygsti/modelmembers/states/cptpstate.py +0 -389
- pyGSTi-0.9.12/pygsti/modelmembers/states/densestate.py +0 -368
- pyGSTi-0.9.12/pygsti/modelmembers/states/fullpurestate.py +0 -157
- pyGSTi-0.9.12/pygsti/modelmembers/states/purestate.py +0 -283
- pyGSTi-0.9.12/pygsti/modelmembers/states/state.py +0 -576
- pyGSTi-0.9.12/pygsti/modelmembers/states/tpstate.py +0 -208
- pyGSTi-0.9.12/pygsti/modelmembers/term.py +0 -883
- pyGSTi-0.9.12/pygsti/modelpacks/_modelpack.py +0 -546
- pyGSTi-0.9.12/pygsti/modelpacks/smq1Q_ZN.py +0 -69
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XXYYII.py +0 -1169
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XY.py +0 -270
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XYI.py +0 -388
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XYICNOT.py +0 -416
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XYICPHASE.py +0 -422
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XYXX.py +0 -343
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XYZICNOT.py +0 -578
- pyGSTi-0.9.12/pygsti/modelpacks/smq2Q_XYZZ.py +0 -343
- pyGSTi-0.9.12/pygsti/modelpacks/stdtarget.py +0 -552
- pyGSTi-0.9.12/pygsti/models/cloudnoisemodel.py +0 -721
- pyGSTi-0.9.12/pygsti/models/explicitcalc.py +0 -840
- pyGSTi-0.9.12/pygsti/models/explicitmodel.py +0 -1744
- pyGSTi-0.9.12/pygsti/models/fogistore.py +0 -589
- pyGSTi-0.9.12/pygsti/models/localnoisemodel.py +0 -615
- pyGSTi-0.9.12/pygsti/models/memberdict.py +0 -389
- pyGSTi-0.9.12/pygsti/models/model.py +0 -2261
- pyGSTi-0.9.12/pygsti/models/modelconstruction.py +0 -2482
- pyGSTi-0.9.12/pygsti/models/modelnoise.py +0 -1071
- pyGSTi-0.9.12/pygsti/models/modelparaminterposer.py +0 -102
- pyGSTi-0.9.12/pygsti/models/oplessmodel.py +0 -821
- pyGSTi-0.9.12/pygsti/models/qutrit.py +0 -295
- pyGSTi-0.9.12/pygsti/objectivefns/objectivefns.py +0 -6728
- pyGSTi-0.9.12/pygsti/objectivefns/wildcardbudget.py +0 -1180
- pyGSTi-0.9.12/pygsti/optimize/__init__.py +0 -19
- pyGSTi-0.9.12/pygsti/optimize/arraysinterface.py +0 -1268
- pyGSTi-0.9.12/pygsti/optimize/customcg.py +0 -258
- pyGSTi-0.9.12/pygsti/optimize/customlm.py +0 -1549
- pyGSTi-0.9.12/pygsti/optimize/customsolve.py +0 -509
- pyGSTi-0.9.12/pygsti/optimize/optimize.py +0 -888
- pyGSTi-0.9.12/pygsti/optimize/wildcardopt.py +0 -1272
- pyGSTi-0.9.12/pygsti/protocols/confidenceregionfactory.py +0 -1262
- pyGSTi-0.9.12/pygsti/protocols/estimate.py +0 -946
- pyGSTi-0.9.12/pygsti/protocols/gst.py +0 -3260
- pyGSTi-0.9.12/pygsti/protocols/modeltest.py +0 -353
- pyGSTi-0.9.12/pygsti/protocols/protocol.py +0 -3257
- pyGSTi-0.9.12/pygsti/protocols/rb.py +0 -1403
- pyGSTi-0.9.12/pygsti/protocols/treenode.py +0 -320
- pyGSTi-0.9.12/pygsti/protocols/vb.py +0 -1130
- pyGSTi-0.9.12/pygsti/protocols/vbdataframe.py +0 -482
- pyGSTi-0.9.12/pygsti/report/factory.py +0 -1760
- pyGSTi-0.9.12/pygsti/report/fogidiagram.py +0 -1397
- pyGSTi-0.9.12/pygsti/report/modelfunction.py +0 -467
- pyGSTi-0.9.12/pygsti/report/mpl_colormaps.py +0 -692
- pyGSTi-0.9.12/pygsti/report/plothelpers.py +0 -362
- pyGSTi-0.9.12/pygsti/report/report.py +0 -443
- pyGSTi-0.9.12/pygsti/report/reportables.py +0 -2604
- pyGSTi-0.9.12/pygsti/report/templates/offline/pygsti_dashboard.css +0 -618
- pyGSTi-0.9.12/pygsti/report/templates/offline/pygsti_dashboard.js +0 -188
- pyGSTi-0.9.12/pygsti/report/workspace.py +0 -3131
- pyGSTi-0.9.12/pygsti/report/workspaceplots.py +0 -4115
- pyGSTi-0.9.12/pygsti/tools/basistools.py +0 -560
- pyGSTi-0.9.12/pygsti/tools/edesigntools.py +0 -855
- pyGSTi-0.9.12/pygsti/tools/fastcalc.pyx +0 -1310
- pyGSTi-0.9.12/pygsti/tools/internalgates.py +0 -700
- pyGSTi-0.9.12/pygsti/tools/jamiolkowski.py +0 -361
- pyGSTi-0.9.12/pygsti/tools/lindbladtools.py +0 -232
- pyGSTi-0.9.12/pygsti/tools/listtools.py +0 -499
- pyGSTi-0.9.12/pygsti/tools/matrixmod2.py +0 -531
- pyGSTi-0.9.12/pygsti/tools/matrixtools.py +0 -2562
- pyGSTi-0.9.12/pygsti/tools/nameddict.py +0 -205
- pyGSTi-0.9.12/pygsti/tools/optools.py +0 -2428
- pyGSTi-0.9.12/pygsti/tools/pdftools.py +0 -98
- pyGSTi-0.9.12/pygsti/tools/rbtheory.py +0 -868
- pyGSTi-0.9.12/pygsti/tools/slicetools.py +0 -351
- pyGSTi-0.9.12/requirements.txt +0 -5
- pyGSTi-0.9.12/rtd-requirements.txt +0 -9
- pyGSTi-0.9.12/scripts/api_names.yaml +0 -3862
- pyGSTi-0.9.12/setup.cfg +0 -17
- pyGSTi-0.9.12/setup.py +0 -509
- pyGSTi-0.9.12/test/performance/mpi_2D_scaling/mpi_test.py +0 -62
- pyGSTi-0.9.12/test/test_packages/algorithms/basecase.py +0 -45
- pyGSTi-0.9.12/test/test_packages/algorithms/test_autoexperimentdesign.py +0 -88
- pyGSTi-0.9.12/test/test_packages/algorithms/test_core.py +0 -83
- pyGSTi-0.9.12/test/test_packages/algorithms/test_fiducialpairreduction.py +0 -126
- pyGSTi-0.9.12/test/test_packages/algorithms/test_fogi_gst.py +0 -380
- pyGSTi-0.9.12/test/test_packages/algorithmsb/test_germselection.py +0 -132
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/Fake_Dataset_none.txt.cache +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/calcMethods1Q.dataset +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/calcMethods1Q_redmod.dataset +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/clgst.model +0 -42
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/drivers.dataset +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/idt_nQsequenceCache.pkl +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/lgst.model +0 -42
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/lgst_go.model +0 -42
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/nqubit_1Q_seqs.json +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/nqubit_2Q_dataset.json +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/nqubit_2Q_seqs.json +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/nqubit_2Qterms.cache +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/reportgen.dataset +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/reportgen2.dataset +0 -0
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/test1Qcalc_redmod_exact.model +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/test1Qcalc_redmod_terms.model +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/test1Qcalc_std_exact.model +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/test1Qcalc_std_prunedpath.model +0 -1
- pyGSTi-0.9.12/test/test_packages/cmp_chk_files/test1Qcalc_std_terms.model +0 -1
- pyGSTi-0.9.12/test/test_packages/construction/test_gateconstruction.py +0 -34
- pyGSTi-0.9.12/test/test_packages/drivers/nqubitconstruction.py +0 -652
- pyGSTi-0.9.12/test/test_packages/drivers/test_calcmethods1Q.py +0 -693
- pyGSTi-0.9.12/test/test_packages/drivers/test_continuousgates.py +0 -124
- pyGSTi-0.9.12/test/test_packages/drivers/test_drivers.py +0 -346
- pyGSTi-0.9.12/test/test_packages/drivers/test_nqubit.py +0 -329
- pyGSTi-0.9.12/test/test_packages/drivers/test_timedep.py +0 -157
- pyGSTi-0.9.12/test/test_packages/extras/test_interpygate.py +0 -338
- pyGSTi-0.9.12/test/test_packages/iotest/test_codecs.py +0 -353
- pyGSTi-0.9.12/test/test_packages/iotest/test_stdinput.py +0 -664
- pyGSTi-0.9.12/test/test_packages/iotest/test_stdinputparser.py +0 -838
- pyGSTi-0.9.12/test/test_packages/objects/test_evaltree.py +0 -174
- pyGSTi-0.9.12/test/test_packages/objects/test_gatesets.py +0 -429
- pyGSTi-0.9.12/test/test_packages/objects/test_hessian.py +0 -410
- pyGSTi-0.9.12/test/test_packages/objects/test_instruments.py +0 -353
- pyGSTi-0.9.12/test/test_packages/objects/test_qibogst.py +0 -43
- pyGSTi-0.9.12/test/test_packages/report/reportBaseCase.py +0 -164
- pyGSTi-0.9.12/test/test_packages/report/test_report.py +0 -316
- pyGSTi-0.9.12/test/test_packages/reportb/test_workspace.py +0 -725
- pyGSTi-0.9.12/test/test_packages/tools/test_logl.py +0 -71
- pyGSTi-0.9.12/test/unit/algorithms/fixtures.py +0 -90
- pyGSTi-0.9.12/test/unit/algorithms/test_directx.py +0 -85
- pyGSTi-0.9.12/test/unit/algorithms/test_fiducialpairreduction.py +0 -168
- pyGSTi-0.9.12/test/unit/algorithms/test_fiducialselection.py +0 -240
- pyGSTi-0.9.12/test/unit/algorithms/test_gaugeopt.py +0 -215
- pyGSTi-0.9.12/test/unit/algorithms/test_germselection.py +0 -386
- pyGSTi-0.9.12/test/unit/construction/test_modelconstruction.py +0 -817
- pyGSTi-0.9.12/test/unit/construction/test_qutrit.py +0 -19
- pyGSTi-0.9.12/test/unit/drivers/test_longsequence.py +0 -336
- pyGSTi-0.9.12/test/unit/modelmembers/test_kraus_interface.py +0 -249
- pyGSTi-0.9.12/test/unit/modelmembers/test_operation.py +0 -870
- pyGSTi-0.9.12/test/unit/modelmembers/test_spamvec.py +0 -359
- pyGSTi-0.9.12/test/unit/objects/test_circuit.py +0 -656
- pyGSTi-0.9.12/test/unit/objects/test_evaltree.py +0 -58
- pyGSTi-0.9.12/test/unit/objects/test_fogi.py +0 -229
- pyGSTi-0.9.12/test/unit/objects/test_forwardsim.py +0 -423
- pyGSTi-0.9.12/test/unit/objects/test_localnoisemodel.py +0 -133
- pyGSTi-0.9.12/test/unit/objects/test_model.py +0 -772
- pyGSTi-0.9.12/test/unit/objects/test_objectivefns.py +0 -465
- pyGSTi-0.9.12/test/unit/objects/test_polynomial.py +0 -52
- pyGSTi-0.9.12/test/unit/objects/test_protectedarray.py +0 -40
- pyGSTi-0.9.12/test/unit/objects/test_qibo_evotype.py +0 -127
- pyGSTi-0.9.12/test/unit/optimize/test_customlm.py +0 -43
- pyGSTi-0.9.12/test/unit/protocols/test_gst.py +0 -317
- pyGSTi-0.9.12/test/unit/protocols/test_protocols.py +0 -152
- pyGSTi-0.9.12/test/unit/protocols/test_rb.py +0 -516
- pyGSTi-0.9.12/test/unit/report/__init__.py +0 -0
- pyGSTi-0.9.12/test/unit/tools/test_basisconstructors.py +0 -106
- pyGSTi-0.9.12/test/unit/tools/test_edesigntools.py +0 -266
- pyGSTi-0.9.12/test/unit/tools/test_likelihoodfns.py +0 -91
- pyGSTi-0.9.12/test/unit/tools/test_lindbladtools.py +0 -90
- pyGSTi-0.9.12/test/unit/tools/test_matrixtools.py +0 -230
- pyGSTi-0.9.12/test/unit/tools/test_optools.py +0 -435
- pyGSTi-0.9.12/test/unit/tools/test_opttools.py +0 -66
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.flake8 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.flake8-critical +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.gitattributes +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.github/ci-scripts/before_install.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.github/ci-scripts/before_install_macos.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.github/ci-scripts/merge.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.lint.conf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/.readthedocs.yaml +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/CI/github_deploy_key.enc +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/CI/push.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/CI/send-email +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/CONTRIBUTING.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/LICENSE +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/MANIFEST.in +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/NOTICE +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/LICENSE.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/Makefile +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/NOTICE.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/README.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/index.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/attribute.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/class.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/data.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/exception.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/function.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/method.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/module.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/package.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/_templates/python/property.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/conf.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/index.rst +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/notes/formatter.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/notes/python3.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/notes/repotools/hooks.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/notes/repotools/pylint.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/notes/repotools/test.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/doc/subpackage_hierarchy.pdf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/1QGST-InterpolatedOps.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/2QGST-CreatingModels.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/2QGST-ErrorBars.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/2QGST-RunningIt.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/ContextDependence.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/FisherInformation.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/GOpt-AddingNewOptimizations.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/GOpt-NonIdealTargets.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/MPI-GermSelection.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/MPI-RunningGST.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/ModelMemberGraph.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/Reports-LGSTonly.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/.git_placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/all_circuits_needing_data.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/fiducial_pairs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/germs.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/meas_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/prep_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_stdgaugeopt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/all_circuits_needing_data.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/circuit_lists2.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/germs.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/meas_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/prep_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_go0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/FAQ.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/START_HERE.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Testing/Model Selection.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/03-Miscellaneous.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/CircuitSimulation.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/DataSimulation.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/DatasetComparison.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/IdleTomography.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-BinaryRB.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-DirectRB.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-MirrorRB-Universal-Gate-Sets.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-MirrorRB.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-MultiRBExperiments.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-Overview.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-Samplers.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RobustPhaseEstimation.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/VolumetricBenchmarks.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/CircuitSimulation-CHP.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/CliffordRB-Simulation-ExplicitModel.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/ForwardSimulationTypes.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GST-FiducialAndGermSelection.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GST-LowLevel.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GaugeOpt.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/Circuit.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/CircuitLists.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/DataSet.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ExperimentDesign.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ExplicitModel.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ModelParameterization.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ProcessorSpec.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/GSTCircuitConstruction.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/IBMQExperiment.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/Instruments.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/InterpolatedOperators.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/MatrixBases.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/ModelPacks.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/MultiDataSet.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/OperationFactories.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/Operators.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/ParameterBounds.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/ParameterLabels.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/Results.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/StateSpace.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/TimestampedDataSets.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/other/FileIO.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/Metrics.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/ModelAnalysisMetrics.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/Workspace.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/WorkspaceExamples.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/advanced/WorkspaceSwitchboards.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/.git_placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/.placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/DatasetWith2Passes.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/DatasetWithTimestamps.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Dataset_LowCnts.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/all_circuits_needing_data.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists2.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists3.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists4.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists5.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists6.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists7.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/germs.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/meas_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/prep_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 3 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 4 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 5 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 6 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 7 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_my_gauge_opt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 3 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 4 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 5 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 6 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 7 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_stdgaugeopt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 3 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 4 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 5 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 6 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 7 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_stdgaugeopt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 3 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 4 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 5 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 6 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 7 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_stdgaugeopt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 3 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 4 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 5 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 6 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 7 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_stdgaugeopt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/all_circuits_needing_data.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists2.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists3.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists4.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists5.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists6.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists7.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/germs.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/meas_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/prep_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists2.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists3.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/_gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/final_objfn_builder.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_final iteration estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 0 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 1 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 2 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 3 estimate.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_seed.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_stdgaugeopt.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_target.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/badfit_options.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/gaugeopt_suite.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/initial_model.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/objfn_builders.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/optimizer.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_TinyDataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_depolarizedModel.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/GettingStartedDataTemplate.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/MyCircuits.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/MySimulatedDRBData.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/TDDataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/TinyMultiDataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/A/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/A/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/A/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/B/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/B/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/B/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/C/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/C/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/C/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_edesign_root/edesign/circuits.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/all_circuits_needing_data.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/circuit_lists2.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/germs.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/meas_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/prep_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/0/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/0/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/0/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/1/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/1/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/1/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/intermediate_meas_dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/all_circuits_needing_data.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists0.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists1.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists2.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists3.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists4.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists5.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/germs.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/meas_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/prep_fiducials.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/processor_spec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_pspec.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/timeseries_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/timeseries_probabilities.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/timestamped_dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/data/dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/data/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/circuit_lists0.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/circuit_lists1.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/idealout_lists.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/alt_actual_circuits_executed.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/circuit_lists0.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/circuit_lists1.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/idealout_lists.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/alt_actual_circuits_executed.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/circuit_lists0.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/circuit_lists1.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/idealout_lists.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/alt_actual_circuits_executed.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/circuit_lists0.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/circuit_lists1.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/idealout_lists.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/alt_actual_circuits_executed.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/circuit_lists0.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/circuit_lists1.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/idealout_lists.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/alt_actual_circuits_executed.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/circuit_lists0.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/circuit_lists1.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/idealout_lists.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/edesign/all_circuits_needing_data.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/edesign/meta.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/edesign/subdirs.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pyGSTi.egg-info/dependency_links.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pyGSTi.egg-info/top_level.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/algorithms/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/algorithms/compilers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/algorithms/grammatrix.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/algorithms/grasp.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/algorithms/robust_phase_estimation.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/algorithms/scoring.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/_compatibility.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/advancedoptions.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/basisconstructors.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/errorgenlabel.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/exceptions.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/mongoserializable.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/nicelyserializable.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/opcalc/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/opcalc/slowopcalc.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/outcomelabeldict.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/profiler.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/qubitgraph.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/resourceallocation.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/smartcache.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/unitarygatefunction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/baseobjs/verbosityprinter.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/circuits/circuitparser/fastcircuitparser.pyx +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/circuits/circuitparser/slowcircuitparser.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/circuits/gstcircuits.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/circuits/rpecircuits.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/data/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/data/datasetconstruction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/data/freedataset.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/data/multidataset.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/data/rpedata.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/drivers/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/basecreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/basecreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/basereps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/basereps_cython.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/basereps_cython.pyx +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/chp/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/chp/effectreps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/chp/povmreps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/effectcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/effectreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/opcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/opcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/opreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/statecreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/statecreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/statereps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx_slow/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/effectcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/effectcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/effectreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/opcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/opcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/opreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/statecreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/statecreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/statereps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/termcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/termcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/termreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer_slow/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer_slow/stabilizer.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/effectcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/effectcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/effectreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/opcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/opcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/opreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/statecreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/statecreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/statereps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/termcreps.cpp +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/termcreps.h +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/termreps.pxd +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec_slow/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/evotypes/statevec_slow/statereps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/crosstalk/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/crosstalk/core.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/crosstalk/objects.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/devcore.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/experimentaldevice.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_algiers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_athens.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_auckland.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_belem.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_bogota.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_brisbane.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_burlington.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_cairo.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_cambridge.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_casablanca.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_essex.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_guadalupe.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_hanoi.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_kolkata.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_lagos.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_lima.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_london.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_manhattan.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_manila.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_melbourne.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_montreal.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_mumbai.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_nairobi.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_nazca.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_ourense.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_perth.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_quito.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_rome.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_rueschlikon.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_santiago.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_sherbrooke.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_sydney.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_tenerife.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_toronto.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_vigo.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_yorktown.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_agave.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_aspen4.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_aspen6.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_aspen7.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/drift/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/drift/driftreport.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/drift/probtrajectory.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/drift/trmodel.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/ibmq/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/ibmq/ibmqcore.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/idletomography/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idtcore.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idtreport.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idtresults.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idttools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/idletomography/pauliobjs.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/rpe/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpeconfig.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpeconfig_GxPi2_GyPi2_00.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpeconfig_GxPi2_GyPi2_UpDn.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpetools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/forwardsims/distforwardsim.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/forwardsims/successfailfwdsim.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/forwardsims/termforwardsim_calc_generic.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/forwardsims/termforwardsim_calc_stabilizer.pyx +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/io/metadir.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/io/readers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/io/writers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/layouts/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/layouts/cachedlayout.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/layouts/evaltree.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/errorgencontainer.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/instruments/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/instruments/tpinstrumentop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/modelmembergraph.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/depolarizeop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/identitypluserrorgenop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/krausop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/lpdenseop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/staticarbitraryop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/staticcliffordop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/staticunitaryop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/stochasticop.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/composedpovm.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/conjugatedeffect.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/fulleffect.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/fullpureeffect.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/povm.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/staticeffect.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/staticpureeffect.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/tensorprodeffect.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/tensorprodpovm.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/unconstrainedpovm.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/states/fullstate.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/states/staticpurestate.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/states/staticstate.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelmembers/states/tensorprodstate.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_Cliffords.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XY.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XYI.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XYZI.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XZ.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_ZN.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_pi4_pi2_XZ.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XXII.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XXYYII.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XY.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYCNOT.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYCPHASE.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYI.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYI1.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYI2.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYICNOT.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYICPHASE.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYZICNOT.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/stdQT_XYIMS.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XY.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XYI.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XYZI.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XZ.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_Xpi2_rpe.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_Ypi2_rpe.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_pi4_pi2_XZ.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XXII.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XXII_condensed.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XXYYII_condensed.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYCNOT.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYCPHASE.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYI1.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYI2.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/models/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/models/gaugegroup.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/models/implicitmodel.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/models/layerrules.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/models/rpemodel.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/models/stencillabel.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/objectivefns/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/processors/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/processors/compilationrules.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/processors/processorspec.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/protocols/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/protocols/freeformsim.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/protocols/rpe.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/protocols/stability.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/autotitle.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/cell.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/colormaps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/convert.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/figure.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/formatter.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/formatters.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/html.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/latex.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/merge_helpers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/notebook.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/notebookcell.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/parse_notebook_text.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/plotly_plot_ex.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/python.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/reportableqty.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/row.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/datacomparison.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/drift.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/gauge.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/goodness.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/help.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/idle.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/meta.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/section/summary.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/table.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/CodeCell.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/Empty.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/MDcell.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/drift_html_report/main.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/drift_html_report/tabs/AjaxError.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/drift_html_report/tabs/Drift.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/main.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/tabs/AjaxError.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/tabs/DataComparison.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/tabs/IdleTomography.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/README.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/auto-render.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.eot +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunbi.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunbx.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunbxo.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunrm.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunsi.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunss.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunsx.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunti.otf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/favicon-16x16.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/favicon-32x32.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/favicon-96x96.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/pyGSTi_icon.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_222222_256x240.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_2e83ff_256x240.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_454545_256x240.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_888888_256x240.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_cd0a0a_256x240.png +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/jquery-3.6.4.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/jquery-ui.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/jupyterlibload.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/katex.css +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/katex.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/masonry.pkgd.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/plotly-latest.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/pygsti_dataviz.css +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/pygsti_fonts.css +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/pygsti_plotly_ex.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/require.min.js +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/offline/smoothness-jquery-ui.css +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/data_comparison.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/gauge_invariant.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/gauge_variant.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/goodness.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/input.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/meta.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/summary.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standalone.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standalone.tex +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/main.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/AjaxError.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/DataComparison.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeInvariants_gates.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeInvariants_germs.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants_decomp.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants_errgen.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants_raw.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness_colorboxplot.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness_scaling.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness_unmodeled.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Help.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/IdleTomography.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Input.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Meta.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Summary.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/templates/standard_pdf_report.tex +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/textblock.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/vbplot.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/workspacetables.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/report/workspacetexts.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/serialization/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/serialization/json.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/serialization/jsoncodec.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/serialization/msgpack.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/chi2fns.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/compilationtools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/dataframetools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/exceptions.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/fogitools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/gatetools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/group.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/hypothesis.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/legacytools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/likelihoodfns.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/mpitools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/mptools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/opttools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/profile.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/rbtools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/sharedmemtools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/symplectic.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pygsti/tools/typeddict.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pyproject.toml +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pyproject.toml.no_cython +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/pytest.ini +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/20Replica.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/AdvancedFileLoading.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/AdvancedReport.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/AdvancedReportCreation.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/HelloWorld.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/Lorem.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/advanced_report.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/build_tutorial_20.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/create.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/templates/lorem.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/templates/lorem.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/templates/nbtext.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/advanced_report/templates/setup.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/autoformat.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/cleanup_api_names.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/clear_notebook_output.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/do-critical-linting.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/do-linting.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/find_missing_docstrings.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/create_git_html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/hooksettings.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/post-commit +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/post-merge +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/pre-commit +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/pre-push +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/git/prepare-commit-msg +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/importtestscript.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/matplotlib_to_plotly_cmap.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/mpi/mpi +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/mpi/parallel_apply.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/plantuml_parser.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/build_profile.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/compare/import.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/data/Analyze 2Q data.ipynb +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/1qbasic.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/3Q_example.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/3q_basic.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/basic.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/bench_obj_fn.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/build_results.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/cp.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/create_scaling_graph.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/load.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/mxmul.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/set_env.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/tp.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/move_output +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/percents.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/pickling.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/create_pkl.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/gatestring_hashing.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/gen.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/native_hashing.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/pickling.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/report_example.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/report_full.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/profiling/report/reuse.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/setup_hooks.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/upgrade2v0.9.7.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/scripts/upgrade_stdmodule.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/.coveragerc +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/checkDocs.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/config/pylint_config.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/duplicated.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/automation_tools/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/automation_tools/jsonwrapper.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/automation_tools/utilities.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/findErrors.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/findWarnings.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/helpers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/lintAll.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/lookFor.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/cyclic-import.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/duplicate-code.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/errors.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/if.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/missingdocs.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/out.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/rawexcept.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/specific.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/todos.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-arguments.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-boolean-expressions.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-branches.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-instance-attributes.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-locals.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-return-statements.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-statements.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/unused-import.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/unused.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/output/warnings.out +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/pylint_messages.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/runAdjustables.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/pylint/score.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/helpers/scripts/runCoverageTests.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/lint.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/.placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/coverage/.placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/dup/.placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_algorithms.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_construction.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_drivers.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_io.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_objects.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_optimize.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_report.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_tools.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/output/pylint/.placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/README.md +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/1.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/16-x.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/2-x.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/32-x.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/4-x.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/64-x.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/8-x.sbatch +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/extract_timings.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/reference-8955f5d/2Dspeedup.pdf +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/reference-8955f5d/timings.json +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/run.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/sbatch-all.sh +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/runTests.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/.coveragerc +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/algorithms/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/algorithms/algorithmsTestCase.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/Fake_Dataset_none.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/Fake_Dataset_round.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/IFPR_fidPairs_dict.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/analysis.dataset +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/analysis.model +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/analysis_lgst.dataset +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/create_reference_files.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/deprecated.dataset +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.dataset +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.dataset.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.gateset.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.gateset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.results.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.dataset +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.dataset.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.gateset.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.gateset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.results.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.dataset +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.dataset.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.dataset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.gateset.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.gateset.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.results.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/rb_io_test.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/repLib_dprobs.pkl +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/report_dashboard_template.html +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/rpe_test_ds.txt +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/timeseries_data_trunc.txt +0 -0
- {pyGSTi-0.9.12/test/test_packages/algorithmsb → pyGSTi-0.9.13/test/test_packages/construction}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/construction/test_gatesetconstruction.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/construction → pyGSTi-0.9.13/test/test_packages/drivers}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/drivers/demoCalcMethods2Q.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/drivers → pyGSTi-0.9.13/test/test_packages/extras}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/extras/test_drift.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/extras/test_idt.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/extras/test_rb.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/extras/test_rpe.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/extras/test_rpeobjects.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/iotest/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/iotest/references.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/iotest/test_loaders.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/iotest/test_niceserialization.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/iotest/test_writers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/mpi/test_mpi.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/extras → pyGSTi-0.9.13/test/test_packages/objects}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_advancedgatesetparameterization.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_circuit.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_datasets.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_labeldicts.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_labels.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_opfactories.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_printermpi.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_processorspec.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_profiler.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_replib.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_resultsandestimate.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/objects/test_spamvecs.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/objects → pyGSTi-0.9.13/test/test_packages/optimize}/__init__.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/optimize → pyGSTi-0.9.13/test/test_packages/report}/__init__.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/report → pyGSTi-0.9.13/test/test_packages/reportb}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/reportb/test_colormaps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/reportb/test_notebook.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/reportb/test_reportables.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/temp_test_files/.placeholder +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/testutils/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/test_packages/testutils/basecase.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/reportb → pyGSTi-0.9.13/test/test_packages/tools}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_compilers.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_contract.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_core.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_grammatrix.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_grasp.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_randomcircuit.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/algorithms/test_scoring.py +0 -0
- {pyGSTi-0.9.12/test/test_packages/tools → pyGSTi-0.9.13/test/unit/construction}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/construction/test_circuitconstruction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/construction/test_datasetconstruction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/construction/test_gateconstruction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/construction/test_nqnoiseconstruction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/construction/test_stdlists.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/drivers/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/drivers/fixtures.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/drivers/test_bootstrap.py +0 -0
- {pyGSTi-0.9.12/test/unit/construction → pyGSTi-0.9.13/test/unit/extras}/__init__.py +0 -0
- {pyGSTi-0.9.12/test/unit/extras → pyGSTi-0.9.13/test/unit/extras/interpygate}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/interpygate/test_construction.py +0 -0
- {pyGSTi-0.9.12/test/unit/extras/interpygate → pyGSTi-0.9.13/test/unit/extras/rb}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rb/test_analysis.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rb/test_group.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rb/test_sample.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rb/test_theory.py +0 -0
- {pyGSTi-0.9.12/test/unit/extras/rb → pyGSTi-0.9.13/test/unit/extras/rpe}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rpe/test_rpeconfig.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rpe/test_rpeconstruction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/extras/rpe/test_rpetools.py +0 -0
- {pyGSTi-0.9.12/test/unit/extras/rpe → pyGSTi-0.9.13/test/unit/io}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/io/test_circuitparser.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/io/test_mongo.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/io/test_nice_serialization.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/io/test_stdinput.py +0 -0
- {pyGSTi-0.9.12/test/unit/io → pyGSTi-0.9.13/test/unit/modelmembers}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/modelmembers/test_modelmember.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/modelmembers/test_modelmembergraph.py +0 -0
- {pyGSTi-0.9.12/test/unit/modelmembers → pyGSTi-0.9.13/test/unit/modelpacks}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/modelpacks/test_modelpack.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/fixtures.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/smqfixtures.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_basis.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_circuitstructure.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_composed_spam.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_cython_build.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_datacomparator.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_dataset.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_estimate.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_explicitmodel.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_gaugegroup.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_instrument.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_label.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_labeldicts.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_modelfunction.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_multidataset.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_opcalc.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_prefixtable.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_processorspec.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_replib.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_reportableqty.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_results.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_smartcache.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/objects/test_verbosityprinter.py +0 -0
- {pyGSTi-0.9.12/test/unit/modelpacks → pyGSTi-0.9.13/test/unit/optimize}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/optimize/test_customcg.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/optimize/test_optimize.py +0 -0
- {pyGSTi-0.9.12/test/unit/optimize → pyGSTi-0.9.13/test/unit/protocols}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/protocols/test_dataframe_1.csv +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/protocols/test_dataframe_2.csv +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/protocols/test_vb.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/protocols/test_vbdataframe.py +0 -0
- {pyGSTi-0.9.12/test/unit/protocols → pyGSTi-0.9.13/test/unit/report}/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/report/test_colormaps.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/report/test_formatter.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/report/test_table.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/report/test_textblock.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/__init__.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/fixtures.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_basistools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_chi2fns.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_internalgates.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_jamiolkowski.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_legacytools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_listtools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_pdftools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_slicetools.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/tools/test_symplectic.py +0 -0
- {pyGSTi-0.9.12 → pyGSTi-0.9.13}/test/unit/util.py +0 -0
@@ -0,0 +1,92 @@
|
|
1
|
+
## Global owners (default to pyGSTi maintainers) ##
|
2
|
+
# These will also be owners for everything below
|
3
|
+
# so they can approve minor PRs without adding
|
4
|
+
# undue burden on volunteer code owners
|
5
|
+
* @sandialabs/pygsti-maintainers @sandialabs/pygsti-gatekeepers
|
6
|
+
|
7
|
+
|
8
|
+
## Drift analysis ##
|
9
|
+
pygsti/protocols/stability.py @tjproct @sandialabs/pygsti-gatekeepers
|
10
|
+
pygsti/report/section/drift.py @tjproct @sandialabs/pygsti-gatekeepers
|
11
|
+
pygsti/report/templates/drift_html_report/ @tjproct @sandialabs/pygsti-gatekeepers
|
12
|
+
|
13
|
+
## Forward simulators ##
|
14
|
+
pygsti/forwardsims @rileyjmurray @sandialabs/pygsti-gatekeepers
|
15
|
+
pygsti/forwardsims/termforwardsim* @adhumu @sandialabs/pygsti-gatekeepers
|
16
|
+
|
17
|
+
## IBMQ interface ##
|
18
|
+
pygsti/extras/devices @sandialabs/pygsti-ibmq @sandialabs/pygsti-gatekeepers
|
19
|
+
pygsti/extras/ibmq @sandialabs/pygsti-ibmq @sandialabs/pygsti-gatekeepers
|
20
|
+
|
21
|
+
## Interpygate ##
|
22
|
+
pygsti/extras/interpygate/ @kevincyoung @sandialabs/pygsti-gatekeepers
|
23
|
+
|
24
|
+
## Modelmembers ##
|
25
|
+
pygsti/modelmembers/ @rileyjmurray @sandialabs/pygsti-gatekeepers
|
26
|
+
pygsti/modelmembers/instruments/ @sandialabs/pygsti-mcm @sandialabs/pygsti-gatekeepers
|
27
|
+
|
28
|
+
## Modelpack owners ##
|
29
|
+
pygsti/modelpacks/ @kmrudin @sandialabs/pygsti-gatekeepers
|
30
|
+
|
31
|
+
## Optimizer owners ##
|
32
|
+
pygsti/objectivefns @rileyjmurray @sandialabs/pygsti-gatekeepers
|
33
|
+
pygsti/optimize @rileyjmurray @sandialabs/pygsti-gatekeepers
|
34
|
+
|
35
|
+
## RB owners ##
|
36
|
+
pygsti/algorithms/compilers.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
37
|
+
pygsti/algorithms/mirroring.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
38
|
+
pygsti/algorithms/randomcircuit.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
39
|
+
pygsti/algorithms/rbfit.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
40
|
+
pygsti/protocols/rb.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
41
|
+
pygsti/tools/rbtheory.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
42
|
+
pygsti/tools/rbtools.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
43
|
+
pygsti/tools/symplectic.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
44
|
+
|
45
|
+
## RPE owners ##
|
46
|
+
pygsti/extras/rpe @kmrudin @sandialabs/pygsti-gatekeepers
|
47
|
+
pygsti/models/rpemodel.py @kmrudin @sandialabs/pygsti-gatekeepers
|
48
|
+
pygsti/protocols/rpe.py @kmrudin @sandialabs/pygsti-gatekeepers
|
49
|
+
|
50
|
+
## Reporting owners ##
|
51
|
+
# Specifically just for workspace plots/tables
|
52
|
+
pygsti/report/workspace*.py @pcwysoc @sandialabs/pygsti-gatekeepers
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
## Tutorial owners ##
|
57
|
+
# In addition to general tutorial owners,
|
58
|
+
# we will also have specific tutorials be owned
|
59
|
+
# by topics owners are responsible for above
|
60
|
+
jupyter_notebooks/ @sandialabs/pygsti-tutorials @sandialabs/pygsti-gatekeepers
|
61
|
+
jupyter_notebooks/**/*RB-*.ipynb @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
62
|
+
jupyter_notebooks/Examples/1QGST-InterpolatedOps.ipynb @kevincyoung @sandialabs/pygsti-gatekeepers
|
63
|
+
jupyter_notebooks/Tutorials/algorithms/DriftCharacterization.ipynb @tjproct @sandialabs/pygsti-gatekeepers
|
64
|
+
jupyter_notebooks/Tutorials/algorithms/MirrorCircuitBenchmarks.ipynb @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
65
|
+
jupyter_notebooks/Tutorials/algorithms/RobustPhaseEstimation.ipynb @kmrudin @sandialabs/pygsti-gatekeepers
|
66
|
+
jupyter_notebooks/Tutorials/objects/advanced/IBMQExperiment.ipynb @sandialabs/pygsti-ibmq @sandialabs/pygsti-gatekeepers
|
67
|
+
jupyter_notebooks/Tutorials/objects/advanced/Instruments.ipynb @sandialabs/pygsti-mcm @sandialabs/pygsti-gatekeepers
|
68
|
+
jupyter_notebooks/Tutorials/objects/advanced/InterpolatedOperators.ipynb @kevincyoung @sandialabs/pygsti-gatekeepers
|
69
|
+
jupyter_notebooks/Tutorials/objects/advanced/ModelPacks.ipynb @kmrudin @sandialabs/pygsti-gatekeepers
|
70
|
+
jupyter_notebooks/Tutorials/reporting/ @pcwysoc @sandialabs/pygsti-gatekeepers
|
71
|
+
|
72
|
+
## Test owners ##
|
73
|
+
test/ @rileyjmurray @sandialabs/pygsti-gatekeepers
|
74
|
+
test/test_packages/extras/test_drift.py @tjproct @sandialabs/pygsti-gatekeepers
|
75
|
+
test/test_packages/extras/test_interpygate.py @kevincyoung @sandialabs/pygsti-gatekeepers
|
76
|
+
test/test_packages/extras/test_rb.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
77
|
+
test/test_packages/extras/test_rpe.py @kmrudin @sandialabs/pygsti-gatekeepers
|
78
|
+
test/test_packages/extras/test_rpeobjects.py @kmrudin @sandialabs/pygsti-gatekeepers
|
79
|
+
test/test_packages/objects/test_instruments.py @sandialabs/pygsti-mcm @sandialabs/pygsti-gatekeepers
|
80
|
+
test/test_packages/report/ @pcwysoc @sandialabs/pygsti-gatekeepers
|
81
|
+
test/test_packages/reportb/ @pcwysoc @sandialabs/pygsti-gatekeepers
|
82
|
+
test/unit/algorithms/test_randomcircuit.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
83
|
+
test/unit/extras/interpygate @kevincyoung @sandialabs/pygsti-gatekeepers
|
84
|
+
test/unit/extras/rb/ @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
85
|
+
test/unit/extras/rpe/ @kmrudin @sandialabs/pygsti-gatekeepers
|
86
|
+
test/unit/modelpacks/ @kmrudin @sandialabs/pygsti-gatekeepers
|
87
|
+
test/unit/objects/test_instrument.py @sandialabs/pygsti-mcm @sandialabs/pygsti-gatekeepers
|
88
|
+
test/unit/protocols/test_rb.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
89
|
+
test/unit/report/ @pcwysoc @sandialabs/pygsti-gatekeepers
|
90
|
+
test/unit/tools/test_symplectic.py @sandialabs/pygsti-rb @sandialabs/pygsti-gatekeepers
|
91
|
+
|
92
|
+
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
2
|
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
3
|
+
|
4
|
+
name: Deploy new version on pypi.org
|
5
|
+
|
6
|
+
on:
|
7
|
+
release:
|
8
|
+
types:
|
9
|
+
- published
|
10
|
+
workflow_dispatch:
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
build_wheels:
|
14
|
+
name: Build wheels on ${{ matrix.os }}
|
15
|
+
runs-on: ${{ matrix.os }}
|
16
|
+
|
17
|
+
strategy:
|
18
|
+
matrix:
|
19
|
+
os: [ubuntu-latest, macos-13, windows-latest]
|
20
|
+
steps:
|
21
|
+
- uses: actions/checkout@v4
|
22
|
+
with:
|
23
|
+
fetch-depth: 0 # to fetch all branches and *tags* (needed to get version number correctly)
|
24
|
+
|
25
|
+
- uses: actions/setup-python@v5
|
26
|
+
name: Install Python
|
27
|
+
with:
|
28
|
+
python-version: '3.10'
|
29
|
+
|
30
|
+
- name: Build wheels
|
31
|
+
uses: pypa/cibuildwheel@v2.1.2
|
32
|
+
env:
|
33
|
+
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-*
|
34
|
+
CIBW_BUILD_VERBOSITY: 1
|
35
|
+
CIBW_BEFORE_ALL_LINUX: ./.github/ci-scripts/before_install.sh
|
36
|
+
CIBW_BEFORE_ALL_MACOS: ./.github/ci-scripts/before_install_macos.sh
|
37
|
+
|
38
|
+
- uses: actions/upload-artifact@v4
|
39
|
+
with:
|
40
|
+
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
|
41
|
+
path: ./wheelhouse/*.whl
|
42
|
+
|
43
|
+
build_sdist:
|
44
|
+
name: Build source distribution
|
45
|
+
runs-on: ubuntu-latest
|
46
|
+
#if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') # doesn't work -- try using tags: above
|
47
|
+
|
48
|
+
steps:
|
49
|
+
- uses: actions/checkout@v4
|
50
|
+
with:
|
51
|
+
fetch-depth: 0 # to fetch all branches and *tags* (needed to get version number correctly)
|
52
|
+
|
53
|
+
- uses: actions/setup-python@v5
|
54
|
+
name: Install Python
|
55
|
+
with:
|
56
|
+
python-version: '3.10'
|
57
|
+
|
58
|
+
- name: Build sdist
|
59
|
+
run: python setup.py sdist
|
60
|
+
|
61
|
+
- uses: actions/upload-artifact@v4
|
62
|
+
with:
|
63
|
+
name: cibw-sdist
|
64
|
+
path: dist/*.tar.gz
|
65
|
+
|
66
|
+
upload_pypi:
|
67
|
+
needs: [build_wheels, build_sdist]
|
68
|
+
runs-on: ubuntu-latest
|
69
|
+
if: github.event_name == 'release' && github.event.action == 'published'
|
70
|
+
permissions:
|
71
|
+
# IMPORTANT: this permission is mandatory for trusted publishing
|
72
|
+
id-token: write
|
73
|
+
steps:
|
74
|
+
- uses: actions/download-artifact@v4
|
75
|
+
with:
|
76
|
+
pattern: cibw-*
|
77
|
+
path: dist
|
78
|
+
merge-multiple: true
|
79
|
+
|
80
|
+
- name: Publish package on PyPI
|
81
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
82
|
+
# With the use of OIDC, API tokens are no longer needed
|
83
|
+
# See https://docs.pypi.org/trusted-publishers/using-a-publisher/ for more info
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# This workflow runs a full test suite on beta and master
|
2
|
+
# This includes all versions of supported Python, all OSes, and all test subsets
|
3
|
+
|
4
|
+
name: Build and run tests (beta & master)
|
5
|
+
|
6
|
+
on:
|
7
|
+
push:
|
8
|
+
branches: [ "beta", "master" ]
|
9
|
+
workflow_dispatch: # Allow manual running from GitHub
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
build:
|
13
|
+
strategy:
|
14
|
+
fail-fast: false
|
15
|
+
matrix:
|
16
|
+
os: [macos-13, ubuntu-latest, windows-latest] # TODO: Unpin mac version when cvxopt or Python 3.8 dropped
|
17
|
+
python-version: [3.8, 3.9, '3.10', '3.11']
|
18
|
+
use-cython: ['true', 'false']
|
19
|
+
uses: ./.github/workflows/reuseable-main.yml
|
20
|
+
name: Run pyGSTi tests
|
21
|
+
with:
|
22
|
+
os: ${{ matrix.os }}
|
23
|
+
python-version: ${{ matrix.python-version }}
|
24
|
+
use-cython: ${{ matrix.use-cython }}
|
25
|
+
run-unit-tests: 'true'
|
26
|
+
run-extra-tests: 'true'
|
27
|
+
run-notebook-tests: 'false' # TODO: Turn off failing notebook tests for runner failures starting end of May 2024
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# This workflow runs a moderate test suite on develop
|
2
|
+
# This includes all versions of supported Python, no MacOS, only unit tests,
|
3
|
+
# and only tests environments with Cython in them
|
4
|
+
|
5
|
+
name: Build and run tests (develop)
|
6
|
+
|
7
|
+
on:
|
8
|
+
push:
|
9
|
+
branches: [ "develop" ]
|
10
|
+
workflow_dispatch: # Allow manual running from GitHub
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
build:
|
14
|
+
strategy:
|
15
|
+
fail-fast: false
|
16
|
+
matrix:
|
17
|
+
os: [ubuntu-latest, windows-latest] # No Mac
|
18
|
+
python-version: [3.8, 3.9, '3.10', '3.11']
|
19
|
+
use-cython: ['true', 'false']
|
20
|
+
uses: ./.github/workflows/reuseable-main.yml
|
21
|
+
name: Run pyGSTi tests
|
22
|
+
with:
|
23
|
+
os: ${{ matrix.os }}
|
24
|
+
python-version: ${{ matrix.python-version }}
|
25
|
+
use-cython: 'true' # Cython only
|
26
|
+
run-unit-tests: 'true'
|
27
|
+
run-extra-tests: 'false' # No integration tests
|
28
|
+
run-notebook-tests: 'false' # No notebook tests
|
29
|
+
|
30
|
+
push: # Push to stable "beta" branch on successful build
|
31
|
+
runs-on: ubuntu-latest
|
32
|
+
|
33
|
+
# Only run on "develop" branch if tests pass
|
34
|
+
needs: build
|
35
|
+
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
|
36
|
+
|
37
|
+
steps:
|
38
|
+
- uses: actions/checkout@v4
|
39
|
+
with:
|
40
|
+
fetch-depth: 0
|
41
|
+
token: ${{ secrets.PYGSTI_TOKEN }}
|
42
|
+
- name: Merge changes to beta branch
|
43
|
+
run: |
|
44
|
+
git config --global user.name 'PyGSTi'
|
45
|
+
git config --global user.email 'pygsti@noreply.github.com'
|
46
|
+
git checkout beta
|
47
|
+
git merge --ff-only ${GITHUB_SHA} && git push origin beta
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# This workflow runs a light test suite on all non-main branches
|
2
|
+
# This includes only least/most supported Python version, no MacOS, only unit tests,
|
3
|
+
# and only tests environments with Cython in them
|
4
|
+
|
5
|
+
name: Build and run tests (feature branches)
|
6
|
+
|
7
|
+
on:
|
8
|
+
push:
|
9
|
+
branches-ignore: [ "beta", "develop", "master" ]
|
10
|
+
# Hacky way to only run pull requests from forked repositories (assumes : is not used in branch names unless forked)
|
11
|
+
# https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10
|
12
|
+
pull_request:
|
13
|
+
branches: [ "**:**" ]
|
14
|
+
workflow_dispatch: # Allow manual running from GitHub
|
15
|
+
|
16
|
+
jobs:
|
17
|
+
build:
|
18
|
+
strategy:
|
19
|
+
# fail-fast: true is OK here
|
20
|
+
matrix:
|
21
|
+
os: [ubuntu-latest, windows-latest] # No Mac
|
22
|
+
python-version: [3.8, '3.11'] # Only extremal Python versions
|
23
|
+
uses: ./.github/workflows/reuseable-main.yml
|
24
|
+
name: Run pyGSTi tests
|
25
|
+
with:
|
26
|
+
os: ${{ matrix.os }}
|
27
|
+
python-version: ${{ matrix.python-version }}
|
28
|
+
use-cython: 'true' # Only test environment with Cython
|
29
|
+
run-unit-tests: 'true'
|
30
|
+
run-extra-tests: 'false' # No integration tests
|
31
|
+
run-notebook-tests: 'false' # No notebook tests
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# This is the core workflow for running pyGSTi linting and unit tests
|
2
|
+
# This is used by other workflows to call this on a variety of OS/Python/environment options
|
3
|
+
# By doing it this way, we can quickly call different matrix jobs on different branches
|
4
|
+
|
5
|
+
name: Core pyGSTi build and run tests
|
6
|
+
|
7
|
+
on:
|
8
|
+
workflow_call:
|
9
|
+
inputs:
|
10
|
+
os:
|
11
|
+
required: true
|
12
|
+
type: string
|
13
|
+
python-version:
|
14
|
+
required: true
|
15
|
+
type: string
|
16
|
+
use-cython:
|
17
|
+
required: true
|
18
|
+
type: string
|
19
|
+
run-unit-tests:
|
20
|
+
required: true
|
21
|
+
type: string
|
22
|
+
run-extra-tests:
|
23
|
+
required: true
|
24
|
+
type: string
|
25
|
+
run-notebook-tests:
|
26
|
+
required: true
|
27
|
+
type: string
|
28
|
+
|
29
|
+
env:
|
30
|
+
SKIP_DEAP: 1
|
31
|
+
|
32
|
+
jobs:
|
33
|
+
build-and-test:
|
34
|
+
runs-on: ${{ inputs.os }}
|
35
|
+
steps:
|
36
|
+
- uses: actions/checkout@v4
|
37
|
+
- name: Set up installation environment (Linux and Windows)
|
38
|
+
if: ${{ inputs.os != 'macos-13' }}
|
39
|
+
run: |
|
40
|
+
./.github/ci-scripts/before_install.sh
|
41
|
+
- name: Set up installation environment (MacOS)
|
42
|
+
if: ${{ inputs.os == 'macos-13' }}
|
43
|
+
run: |
|
44
|
+
./.github/ci-scripts/before_install_macos.sh
|
45
|
+
- name: Set up Python ${{ inputs.python-version }}
|
46
|
+
uses: actions/setup-python@v5
|
47
|
+
with:
|
48
|
+
python-version: ${{ inputs.python-version }}
|
49
|
+
- name: Cache pip packages
|
50
|
+
uses: actions/cache@v4
|
51
|
+
with:
|
52
|
+
path: ~/.cache/pip
|
53
|
+
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('**/*requirements.txt') }}
|
54
|
+
- name: Install pip packages
|
55
|
+
run: |
|
56
|
+
python -m pip install --upgrade pip
|
57
|
+
python -m pip install wheel
|
58
|
+
python -m pip install flake8
|
59
|
+
- name: Install package (Cython)
|
60
|
+
if: ${{ inputs.use-cython == 'true' }}
|
61
|
+
run: |
|
62
|
+
python -m pip install -e .[testing]
|
63
|
+
python setup.py build_ext --inplace
|
64
|
+
- name: Install package (No Cython)
|
65
|
+
if: ${{ inputs.use-cython != 'true' }}
|
66
|
+
run: |
|
67
|
+
python -m pip install -e .[testing_no_cython]
|
68
|
+
- name: Lint with flake8 (Linux only)
|
69
|
+
if: ${{ inputs.os == 'ubuntu-latest'}}
|
70
|
+
run: |
|
71
|
+
# Critical errors, exit on failure
|
72
|
+
flake8 . --count --show-source --statistics --config=.flake8-critical
|
73
|
+
# Standard PEP8, allowed to fail since exit-zero treats all errors as warnings
|
74
|
+
flake8 . --exit-zero --statistics
|
75
|
+
- name: Run unit tests
|
76
|
+
if: ${{ inputs.run-unit-tests == 'true' }}
|
77
|
+
run: |
|
78
|
+
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
|
79
|
+
python -m pytest -n auto --dist loadscope --cov=pygsti test/unit
|
80
|
+
- name: Run test_packages
|
81
|
+
if: ${{ inputs.run-extra-tests == 'true' }}
|
82
|
+
run: |
|
83
|
+
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
|
84
|
+
python -m pytest -v -n auto --dist loadscope --ignore=test/test_packages/mpi --ignore=test/test_packages/notebooks test/test_packages
|
85
|
+
- name: Run notebook regression
|
86
|
+
if: ${{ inputs.run-notebook-tests == 'true' }}
|
87
|
+
run: |
|
88
|
+
# If we are running notebooks, we also need to download and compile CHP
|
89
|
+
curl -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c https://www.scottaaronson.com/chp/chp.c
|
90
|
+
gcc -o ./jupyter_notebooks/Tutorials/algorithms/advanced/chp ./jupyter_notebooks/Tutorials/algorithms/advanced/chp.c
|
91
|
+
|
92
|
+
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
|
93
|
+
python -m pytest -n auto --nbval-lax --dist loadscope --nbval-current-env jupyter_notebooks
|
pyGSTi-0.9.13/.gitignore
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
*~
|
2
|
+
*.tmp
|
3
|
+
*.bak
|
4
|
+
*.swp
|
5
|
+
*.pkl
|
6
|
+
*.out
|
7
|
+
*.coverage*
|
8
|
+
*.serial
|
9
|
+
*.cache
|
10
|
+
*.pyd
|
11
|
+
.ipynb_checkpoints
|
12
|
+
test/test_packages/temp_test_files/*
|
13
|
+
*_checkpoints/
|
14
|
+
jupyter_notebooks/**/offline
|
15
|
+
test/test_packages/offline
|
16
|
+
hooks/etc/permissions.yml
|
17
|
+
*comm_output*.txt
|
18
|
+
*.lprof
|
19
|
+
*.cache
|
20
|
+
/.eggs/
|
21
|
+
.ropeproject
|
22
|
+
.vscode
|
23
|
+
doc/_autosummary
|
24
|
+
doc/autoapi
|
25
|
+
doc/build
|
26
|
+
.venv*
|
27
|
+
*.pyc*
|
28
|
+
|
29
|
+
# Protocol Checkpointing #
|
30
|
+
##########################
|
31
|
+
*gst_checkpoints*
|
32
|
+
*model_test_checkpoints*
|
33
|
+
*standard_gst_checkpoints*
|
34
|
+
*ibmqexperiment_checkpoint*
|
35
|
+
|
36
|
+
# Serialization Testing Artifacts #
|
37
|
+
###################################
|
38
|
+
*LinearGateSetTomography_serialization*
|
39
|
+
|
40
|
+
# Test Metadata #
|
41
|
+
#################
|
42
|
+
test/output/*
|
43
|
+
test/output/pylint/*
|
44
|
+
test/output/individual_coverage/*/*
|
45
|
+
test/test_packages/cmp_chk_files/Fake_Dataset_none.txt.cache
|
46
|
+
**.noseids
|
47
|
+
**test_ibmq**
|
48
|
+
|
49
|
+
# Tutorial Notebook Untracked Files #
|
50
|
+
####################################
|
51
|
+
jupyter_notebooks/Tutorials/tutorial_files/modeltest_report
|
52
|
+
jupyter_notebooks/Tutorials/tutorial_files/gettingStartedReport
|
53
|
+
jupyter_notebooks/Examples/example_files/*.pkl
|
54
|
+
jupyter_notebooks/Examples/example_files/*.json
|
55
|
+
jupyter_notebooks/Examples/example_files/leakage_*
|
56
|
+
jupyter_notebooks/Tutorials/tutorial_files/exampleReport
|
57
|
+
jupyter_notebooks/Tutorials/tutorial_files/exampleStdReport
|
58
|
+
jupyter_notebooks/Tutorials/tutorial_files/exampleMultiEstimateReport
|
59
|
+
jupyter_notebooks/Tutorials/tutorial_files/exampleMultiEstimateReport2
|
60
|
+
jupyter_notebooks/Tutorials/tutorial_files/exampleMultiDataSetReport
|
61
|
+
jupyter_notebooks/Tutorials/tutorial_files/exampleBriefReport
|
62
|
+
jupyter_notebooks/Tutorials/tutorial_files/*.ipynb
|
63
|
+
jupyter_notebooks/Tutorials/tutorial_files/tempTest
|
64
|
+
jupyter_notebooks/Tutorials/tutorial_files/*checkpoints
|
65
|
+
jupyter_notebooks/Tutorials/tutorial_files/test_mirror_benchmark
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
# Compiled source #
|
70
|
+
###################
|
71
|
+
*.c
|
72
|
+
*.cpp
|
73
|
+
*.pyc
|
74
|
+
*.com
|
75
|
+
*.class
|
76
|
+
*.dll
|
77
|
+
*.exe
|
78
|
+
*.o
|
79
|
+
*.so
|
80
|
+
*.aux
|
81
|
+
*.dvi
|
82
|
+
*.toc
|
83
|
+
build/*
|
84
|
+
dist/*
|
85
|
+
/pygsti.egg-info
|
86
|
+
/pyGSTi.egg-info
|
87
|
+
parsetab_string.py
|
88
|
+
*.pyd
|
89
|
+
|
90
|
+
# These are handwritten, not generated by cython, and should not be ignored
|
91
|
+
!/pygsti/objects/replib/fastreps.cpp
|
92
|
+
!/pygsti/objects/replib/fastreps.h
|
93
|
+
|
94
|
+
# Packages #
|
95
|
+
############
|
96
|
+
# it's better to unpack these files and commit the raw source
|
97
|
+
# git has its own built in compression methods
|
98
|
+
*.7z
|
99
|
+
*.dmg
|
100
|
+
*.gz
|
101
|
+
*.iso
|
102
|
+
*.jar
|
103
|
+
*.rar
|
104
|
+
*.tar
|
105
|
+
*.zip
|
106
|
+
|
107
|
+
# Logs and databases #
|
108
|
+
######################
|
109
|
+
*.log
|
110
|
+
*.sql
|
111
|
+
*.sqlite
|
112
|
+
|
113
|
+
# OS generated files #
|
114
|
+
######################
|
115
|
+
.DS_Store
|
116
|
+
.DS_Store?
|
117
|
+
ehthumbs.db
|
118
|
+
Icon?
|
119
|
+
Thumbs.db
|
120
|
+
.idea/
|
121
|
+
HighImpactPaper1/texFiles/.DS_Store
|
122
|
+
|
123
|
+
# Generated documentation #
|
124
|
+
###########################
|
125
|
+
doc/html/*
|
126
|
+
doc/_auto
|
127
|
+
doc/_build
|
128
|
+
|
129
|
+
# Customer Data #
|
130
|
+
#################
|
131
|
+
scripts/profiling/report/*.ipynb
|
132
|
+
scripts/profiling/report/Analyze+2Q+data.py
|
133
|
+
scripts/profiling/report/*.html
|
134
|
+
scripts/profiling/*.html
|
135
|
+
scripts/profiling/report/standard_report.py
|
136
|
+
scripts/profiling/report/tp_report.py
|
137
|
+
scripts/profiling/report/rigetti_nocache.py
|
138
|
+
|
139
|
+
# Profiling data #
|
140
|
+
#################
|
141
|
+
scripts/profiling/output
|
142
|
+
scripts/profiling/data
|
143
|
+
|
144
|
+
# Other Local-only Files #
|
145
|
+
############################
|
146
|
+
local
|
147
|
+
pygsti/_version.py
|