pyGSTi 0.9.12.1__tar.gz → 0.9.13__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1796) hide show
  1. pyGSTi-0.9.13/.github/CODEOWNERS +92 -0
  2. pyGSTi-0.9.13/.github/workflows/autodeploy.yml +83 -0
  3. pyGSTi-0.9.13/.github/workflows/beta-master.yml +33 -0
  4. pyGSTi-0.9.13/.github/workflows/develop.yml +52 -0
  5. pyGSTi-0.9.13/.github/workflows/feature-branches.yml +37 -0
  6. pyGSTi-0.9.13/.github/workflows/reuseable-main.yml +93 -0
  7. pyGSTi-0.9.13/.gitignore +147 -0
  8. pyGSTi-0.9.13/CHANGELOG +461 -0
  9. pyGSTi-0.9.13/PKG-INFO +57 -0
  10. pyGSTi-0.9.13/jupyter_notebooks/Examples/BootstrappedErrorBars.ipynb +234 -0
  11. pyGSTi-0.9.13/jupyter_notebooks/Examples/CirqIntegration.ipynb +609 -0
  12. pyGSTi-0.9.13/jupyter_notebooks/Examples/Leakage.ipynb +401 -0
  13. pyGSTi-0.9.13/jupyter_notebooks/Examples/QutritGST.ipynb +168 -0
  14. pyGSTi-0.9.13/jupyter_notebooks/Examples/example_files/dataTemplate_qutrit_maxL=4.txt +775 -0
  15. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/00-Protocols.ipynb +340 -0
  16. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/DriftCharacterization.ipynb +380 -0
  17. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Driverfunctions.ipynb +329 -0
  18. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Overview-functionbased.ipynb +124 -0
  19. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Overview.ipynb +155 -0
  20. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/GST-Protocols.ipynb +598 -0
  21. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/MirrorCircuitBenchmarks.ipynb +358 -0
  22. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/ModelTesting-functions.ipynb +220 -0
  23. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/ModelTesting.ipynb +272 -0
  24. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/RB-CliffordRB.ipynb +396 -0
  25. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/advanced/CliffordRB-Simulation-ImplicitModel.ipynb +221 -0
  26. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/algorithms/advanced/Time-dependent-GST.ipynb +370 -0
  27. pyGSTi-0.9.13/jupyter_notebooks/Tutorials/reporting/ProceduralErrorBars.ipynb +174 -0
  28. pyGSTi-0.9.13/optional-requirements.txt +13 -0
  29. pyGSTi-0.9.13/pyGSTi.egg-info/PKG-INFO +57 -0
  30. pyGSTi-0.9.13/pyGSTi.egg-info/SOURCES.txt +2142 -0
  31. pyGSTi-0.9.13/pyGSTi.egg-info/requires.txt +164 -0
  32. pyGSTi-0.9.13/pygsti/_version.py +16 -0
  33. pyGSTi-0.9.13/pygsti/algorithms/contract.py +434 -0
  34. pyGSTi-0.9.13/pygsti/algorithms/core.py +1186 -0
  35. pyGSTi-0.9.13/pygsti/algorithms/fiducialselection.py +2029 -0
  36. pyGSTi-0.9.13/pygsti/algorithms/gaugeopt.py +924 -0
  37. pyGSTi-0.9.13/pygsti/algorithms/germselection.py +5025 -0
  38. pyGSTi-0.9.13/pygsti/algorithms/mirroring.py +229 -0
  39. pyGSTi-0.9.13/pygsti/algorithms/randomcircuit.py +2452 -0
  40. pyGSTi-0.9.13/pygsti/algorithms/rbfit.py +345 -0
  41. pyGSTi-0.9.13/pygsti/baseobjs/basis.py +1762 -0
  42. pyGSTi-0.9.13/pygsti/baseobjs/errorgenbasis.py +516 -0
  43. pyGSTi-0.9.13/pygsti/baseobjs/errorgenspace.py +99 -0
  44. pyGSTi-0.9.13/pygsti/baseobjs/label.py +2162 -0
  45. pyGSTi-0.9.13/pygsti/baseobjs/opcalc/fastopcalc.pyx +1038 -0
  46. pyGSTi-0.9.13/pygsti/baseobjs/polynomial.py +621 -0
  47. pyGSTi-0.9.13/pygsti/baseobjs/statespace.py +1333 -0
  48. pyGSTi-0.9.13/pygsti/circuits/__init__.py +21 -0
  49. pyGSTi-0.9.13/pygsti/circuits/circuit.py +4692 -0
  50. pyGSTi-0.9.13/pygsti/circuits/circuitconstruction.py +934 -0
  51. pyGSTi-0.9.13/pygsti/circuits/circuitlist.py +249 -0
  52. pyGSTi-0.9.13/pygsti/circuits/circuitparser/__init__.py +421 -0
  53. pyGSTi-0.9.13/pygsti/circuits/circuitstructure.py +963 -0
  54. pyGSTi-0.9.13/pygsti/circuits/cloudcircuitconstruction.py +2568 -0
  55. pyGSTi-0.9.13/pygsti/data/datacomparator.py +1022 -0
  56. pyGSTi-0.9.13/pygsti/data/dataset.py +3249 -0
  57. pyGSTi-0.9.13/pygsti/data/hypothesistest.py +459 -0
  58. pyGSTi-0.9.13/pygsti/drivers/bootstrap.py +494 -0
  59. pyGSTi-0.9.13/pygsti/drivers/longsequence.py +938 -0
  60. pyGSTi-0.9.13/pygsti/evotypes/chp/opreps.py +218 -0
  61. pyGSTi-0.9.13/pygsti/evotypes/chp/statereps.py +79 -0
  62. pyGSTi-0.9.13/pygsti/evotypes/densitymx/effectcreps.cpp +200 -0
  63. pyGSTi-0.9.13/pygsti/evotypes/densitymx/effectreps.pyx +191 -0
  64. pyGSTi-0.9.13/pygsti/evotypes/densitymx/opreps.pyx +764 -0
  65. pyGSTi-0.9.13/pygsti/evotypes/densitymx/statereps.pyx +180 -0
  66. pyGSTi-0.9.13/pygsti/evotypes/densitymx_slow/effectreps.py +179 -0
  67. pyGSTi-0.9.13/pygsti/evotypes/densitymx_slow/opreps.py +507 -0
  68. pyGSTi-0.9.13/pygsti/evotypes/densitymx_slow/statereps.py +167 -0
  69. pyGSTi-0.9.13/pygsti/evotypes/evotype.py +256 -0
  70. pyGSTi-0.9.13/pygsti/evotypes/stabilizer/effectreps.pyx +89 -0
  71. pyGSTi-0.9.13/pygsti/evotypes/stabilizer/opreps.pyx +266 -0
  72. pyGSTi-0.9.13/pygsti/evotypes/stabilizer/statereps.pyx +162 -0
  73. pyGSTi-0.9.13/pygsti/evotypes/stabilizer/termreps.pyx +109 -0
  74. pyGSTi-0.9.13/pygsti/evotypes/stabilizer_slow/effectreps.py +70 -0
  75. pyGSTi-0.9.13/pygsti/evotypes/stabilizer_slow/opreps.py +217 -0
  76. pyGSTi-0.9.13/pygsti/evotypes/stabilizer_slow/statereps.py +117 -0
  77. pyGSTi-0.9.13/pygsti/evotypes/statevec/effectreps.pyx +195 -0
  78. pyGSTi-0.9.13/pygsti/evotypes/statevec/opreps.pyx +474 -0
  79. pyGSTi-0.9.13/pygsti/evotypes/statevec/statereps.pyx +167 -0
  80. pyGSTi-0.9.13/pygsti/evotypes/statevec/termreps.pyx +167 -0
  81. pyGSTi-0.9.13/pygsti/evotypes/statevec_slow/effectreps.py +189 -0
  82. pyGSTi-0.9.13/pygsti/evotypes/statevec_slow/opreps.py +454 -0
  83. pyGSTi-0.9.13/pygsti/extras/__init__.py +12 -0
  84. pyGSTi-0.9.13/pygsti/extras/drift/stabilityanalyzer.py +2007 -0
  85. pyGSTi-0.9.13/pygsti/extras/interpygate/__init__.py +24 -0
  86. pyGSTi-0.9.13/pygsti/extras/interpygate/core.py +662 -0
  87. pyGSTi-0.9.13/pygsti/extras/interpygate/process_tomography.py +199 -0
  88. pyGSTi-0.9.13/pygsti/extras/rpe/rpeconstruction.py +318 -0
  89. pyGSTi-0.9.13/pygsti/forwardsims/__init__.py +18 -0
  90. pyGSTi-0.9.13/pygsti/forwardsims/forwardsim.py +899 -0
  91. pyGSTi-0.9.13/pygsti/forwardsims/mapforwardsim.py +770 -0
  92. pyGSTi-0.9.13/pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +639 -0
  93. pyGSTi-0.9.13/pygsti/forwardsims/mapforwardsim_calc_generic.py +410 -0
  94. pyGSTi-0.9.13/pygsti/forwardsims/matrixforwardsim.py +2105 -0
  95. pyGSTi-0.9.13/pygsti/forwardsims/termforwardsim.py +1409 -0
  96. pyGSTi-0.9.13/pygsti/forwardsims/termforwardsim_calc_statevec.pyx +1533 -0
  97. pyGSTi-0.9.13/pygsti/forwardsims/torchfwdsim.py +265 -0
  98. pyGSTi-0.9.13/pygsti/forwardsims/weakforwardsim.py +197 -0
  99. pyGSTi-0.9.13/pygsti/io/__init__.py +20 -0
  100. pyGSTi-0.9.13/pygsti/io/mongodb.py +1056 -0
  101. pyGSTi-0.9.13/pygsti/io/stdinput.py +1291 -0
  102. pyGSTi-0.9.13/pygsti/layouts/copalayout.py +801 -0
  103. pyGSTi-0.9.13/pygsti/layouts/distlayout.py +1401 -0
  104. pyGSTi-0.9.13/pygsti/layouts/maplayout.py +328 -0
  105. pyGSTi-0.9.13/pygsti/layouts/matrixlayout.py +385 -0
  106. pyGSTi-0.9.13/pygsti/layouts/prefixtable.py +1817 -0
  107. pyGSTi-0.9.13/pygsti/layouts/termlayout.py +226 -0
  108. pyGSTi-0.9.13/pygsti/modelmembers/instruments/instrument.py +395 -0
  109. pyGSTi-0.9.13/pygsti/modelmembers/instruments/tpinstrument.py +421 -0
  110. pyGSTi-0.9.13/pygsti/modelmembers/modelmember.py +1118 -0
  111. pyGSTi-0.9.13/pygsti/modelmembers/operations/__init__.py +490 -0
  112. pyGSTi-0.9.13/pygsti/modelmembers/operations/affineshiftop.py +206 -0
  113. pyGSTi-0.9.13/pygsti/modelmembers/operations/composederrorgen.py +784 -0
  114. pyGSTi-0.9.13/pygsti/modelmembers/operations/composedop.py +928 -0
  115. pyGSTi-0.9.13/pygsti/modelmembers/operations/denseop.py +656 -0
  116. pyGSTi-0.9.13/pygsti/modelmembers/operations/eigpdenseop.py +458 -0
  117. pyGSTi-0.9.13/pygsti/modelmembers/operations/embeddederrorgen.py +358 -0
  118. pyGSTi-0.9.13/pygsti/modelmembers/operations/embeddedop.py +879 -0
  119. pyGSTi-0.9.13/pygsti/modelmembers/operations/experrorgenop.py +841 -0
  120. pyGSTi-0.9.13/pygsti/modelmembers/operations/fullarbitraryop.py +165 -0
  121. pyGSTi-0.9.13/pygsti/modelmembers/operations/fullcptpop.py +333 -0
  122. pyGSTi-0.9.13/pygsti/modelmembers/operations/fulltpop.py +218 -0
  123. pyGSTi-0.9.13/pygsti/modelmembers/operations/fullunitaryop.py +262 -0
  124. pyGSTi-0.9.13/pygsti/modelmembers/operations/lindbladcoefficients.py +1221 -0
  125. pyGSTi-0.9.13/pygsti/modelmembers/operations/lindbladerrorgen.py +1597 -0
  126. pyGSTi-0.9.13/pygsti/modelmembers/operations/linearop.py +884 -0
  127. pyGSTi-0.9.13/pygsti/modelmembers/operations/opfactory.py +870 -0
  128. pyGSTi-0.9.13/pygsti/modelmembers/operations/repeatedop.py +249 -0
  129. pyGSTi-0.9.13/pygsti/modelmembers/operations/staticstdop.py +217 -0
  130. pyGSTi-0.9.13/pygsti/modelmembers/povms/__init__.py +516 -0
  131. pyGSTi-0.9.13/pygsti/modelmembers/povms/basepovm.py +329 -0
  132. pyGSTi-0.9.13/pygsti/modelmembers/povms/complementeffect.py +218 -0
  133. pyGSTi-0.9.13/pygsti/modelmembers/povms/composedeffect.py +454 -0
  134. pyGSTi-0.9.13/pygsti/modelmembers/povms/computationaleffect.py +327 -0
  135. pyGSTi-0.9.13/pygsti/modelmembers/povms/computationalpovm.py +211 -0
  136. pyGSTi-0.9.13/pygsti/modelmembers/povms/effect.py +491 -0
  137. pyGSTi-0.9.13/pygsti/modelmembers/povms/marginalizedpovm.py +241 -0
  138. pyGSTi-0.9.13/pygsti/modelmembers/povms/tppovm.py +130 -0
  139. pyGSTi-0.9.13/pygsti/modelmembers/states/__init__.py +439 -0
  140. pyGSTi-0.9.13/pygsti/modelmembers/states/composedstate.py +576 -0
  141. pyGSTi-0.9.13/pygsti/modelmembers/states/computationalstate.py +337 -0
  142. pyGSTi-0.9.13/pygsti/modelmembers/states/cptpstate.py +389 -0
  143. pyGSTi-0.9.13/pygsti/modelmembers/states/densestate.py +370 -0
  144. pyGSTi-0.9.13/pygsti/modelmembers/states/fullpurestate.py +133 -0
  145. pyGSTi-0.9.13/pygsti/modelmembers/states/purestate.py +283 -0
  146. pyGSTi-0.9.13/pygsti/modelmembers/states/state.py +575 -0
  147. pyGSTi-0.9.13/pygsti/modelmembers/states/tpstate.py +226 -0
  148. pyGSTi-0.9.13/pygsti/modelmembers/term.py +880 -0
  149. pyGSTi-0.9.13/pygsti/modelmembers/torchable.py +50 -0
  150. pyGSTi-0.9.13/pygsti/modelpacks/_modelpack.py +546 -0
  151. pyGSTi-0.9.13/pygsti/modelpacks/smq1Q_ZN.py +71 -0
  152. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XXYYII.py +1170 -0
  153. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XY.py +270 -0
  154. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYI.py +388 -0
  155. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYICNOT.py +416 -0
  156. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYICPHASE.py +422 -0
  157. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYXX.py +343 -0
  158. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYZICNOT.py +578 -0
  159. pyGSTi-0.9.13/pygsti/modelpacks/smq2Q_XYZZ.py +343 -0
  160. pyGSTi-0.9.13/pygsti/modelpacks/stdtarget.py +431 -0
  161. pyGSTi-0.9.13/pygsti/models/cloudnoisemodel.py +720 -0
  162. pyGSTi-0.9.13/pygsti/models/explicitcalc.py +840 -0
  163. pyGSTi-0.9.13/pygsti/models/explicitmodel.py +1734 -0
  164. pyGSTi-0.9.13/pygsti/models/fogistore.py +591 -0
  165. pyGSTi-0.9.13/pygsti/models/localnoisemodel.py +614 -0
  166. pyGSTi-0.9.13/pygsti/models/memberdict.py +377 -0
  167. pyGSTi-0.9.13/pygsti/models/model.py +2994 -0
  168. pyGSTi-0.9.13/pygsti/models/modelconstruction.py +2482 -0
  169. pyGSTi-0.9.13/pygsti/models/modelnoise.py +1071 -0
  170. pyGSTi-0.9.13/pygsti/models/modelparaminterposer.py +102 -0
  171. pyGSTi-0.9.13/pygsti/models/oplessmodel.py +821 -0
  172. pyGSTi-0.9.13/pygsti/models/qutrit.py +296 -0
  173. pyGSTi-0.9.13/pygsti/objectivefns/objectivefns.py +6663 -0
  174. pyGSTi-0.9.13/pygsti/objectivefns/wildcardbudget.py +1175 -0
  175. pyGSTi-0.9.13/pygsti/optimize/__init__.py +20 -0
  176. pyGSTi-0.9.13/pygsti/optimize/arraysinterface.py +1296 -0
  177. pyGSTi-0.9.13/pygsti/optimize/customcg.py +246 -0
  178. pyGSTi-0.9.13/pygsti/optimize/customlm.py +1355 -0
  179. pyGSTi-0.9.13/pygsti/optimize/customsolve.py +509 -0
  180. pyGSTi-0.9.13/pygsti/optimize/optimize.py +804 -0
  181. pyGSTi-0.9.13/pygsti/optimize/simplerlm.py +841 -0
  182. pyGSTi-0.9.13/pygsti/optimize/wildcardopt.py +693 -0
  183. pyGSTi-0.9.13/pygsti/protocols/confidenceregionfactory.py +1276 -0
  184. pyGSTi-0.9.13/pygsti/protocols/estimate.py +963 -0
  185. pyGSTi-0.9.13/pygsti/protocols/gst.py +3356 -0
  186. pyGSTi-0.9.13/pygsti/protocols/modeltest.py +360 -0
  187. pyGSTi-0.9.13/pygsti/protocols/protocol.py +3229 -0
  188. pyGSTi-0.9.13/pygsti/protocols/rb.py +1774 -0
  189. pyGSTi-0.9.13/pygsti/protocols/treenode.py +326 -0
  190. pyGSTi-0.9.13/pygsti/protocols/vb.py +1032 -0
  191. pyGSTi-0.9.13/pygsti/protocols/vbdataframe.py +482 -0
  192. pyGSTi-0.9.13/pygsti/report/factory.py +1745 -0
  193. pyGSTi-0.9.13/pygsti/report/fogidiagram.py +1381 -0
  194. pyGSTi-0.9.13/pygsti/report/modelfunction.py +476 -0
  195. pyGSTi-0.9.13/pygsti/report/mpl_colormaps.py +692 -0
  196. pyGSTi-0.9.13/pygsti/report/plothelpers.py +370 -0
  197. pyGSTi-0.9.13/pygsti/report/reportables.py +2608 -0
  198. pyGSTi-0.9.13/pygsti/report/templates/offline/pygsti_dashboard.css +624 -0
  199. pyGSTi-0.9.13/pygsti/report/templates/offline/pygsti_dashboard.js +200 -0
  200. pyGSTi-0.9.13/pygsti/report/workspace.py +3119 -0
  201. pyGSTi-0.9.13/pygsti/report/workspaceplots.py +3938 -0
  202. pyGSTi-0.9.13/pygsti/tools/basistools.py +533 -0
  203. pyGSTi-0.9.13/pygsti/tools/edesigntools.py +883 -0
  204. pyGSTi-0.9.13/pygsti/tools/fastcalc.pyx +1264 -0
  205. pyGSTi-0.9.13/pygsti/tools/internalgates.py +836 -0
  206. pyGSTi-0.9.13/pygsti/tools/jamiolkowski.py +361 -0
  207. pyGSTi-0.9.13/pygsti/tools/lindbladtools.py +240 -0
  208. pyGSTi-0.9.13/pygsti/tools/listtools.py +385 -0
  209. pyGSTi-0.9.13/pygsti/tools/matrixmod2.py +531 -0
  210. pyGSTi-0.9.13/pygsti/tools/matrixtools.py +2396 -0
  211. pyGSTi-0.9.13/pygsti/tools/nameddict.py +205 -0
  212. pyGSTi-0.9.13/pygsti/tools/optools.py +2494 -0
  213. pyGSTi-0.9.13/pygsti/tools/pdftools.py +73 -0
  214. pyGSTi-0.9.13/pygsti/tools/rbtheory.py +551 -0
  215. pyGSTi-0.9.13/pygsti/tools/slicetools.py +403 -0
  216. pyGSTi-0.9.13/requirements.txt +6 -0
  217. pyGSTi-0.9.13/rtd-requirements.txt +10 -0
  218. pyGSTi-0.9.13/scripts/api_names.yaml +3854 -0
  219. pyGSTi-0.9.13/setup.cfg +17 -0
  220. pyGSTi-0.9.13/setup.py +514 -0
  221. pyGSTi-0.9.13/test/performance/mpi_2D_scaling/mpi_test.py +67 -0
  222. pyGSTi-0.9.13/test/test_packages/algorithms/test_fogi_gst.py +381 -0
  223. pyGSTi-0.9.13/test/test_packages/algorithms/test_germselection.py +183 -0
  224. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/Fake_Dataset_none.txt.cache +0 -0
  225. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/idt_nQsequenceCache.pkl +0 -0
  226. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_redmod_exact.json +1760 -0
  227. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_redmod_terms.json +1769 -0
  228. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_std_exact.json +1869 -0
  229. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_std_prunedpath.json +1716 -0
  230. pyGSTi-0.9.13/test/test_packages/cmp_chk_files/test1Qcalc_std_terms.json +1716 -0
  231. pyGSTi-0.9.13/test/test_packages/drivers/test_drivers.py +324 -0
  232. pyGSTi-0.9.13/test/test_packages/drivers/test_timedep.py +175 -0
  233. pyGSTi-0.9.13/test/test_packages/extras/test_interpygate.py +339 -0
  234. pyGSTi-0.9.13/test/test_packages/iotest/test_codecs.py +332 -0
  235. pyGSTi-0.9.13/test/test_packages/iotest/test_stdinput.py +664 -0
  236. pyGSTi-0.9.13/test/test_packages/iotest/test_stdinputparser.py +830 -0
  237. pyGSTi-0.9.13/test/test_packages/objects/test_evaltree.py +64 -0
  238. pyGSTi-0.9.13/test/test_packages/objects/test_gatesets.py +375 -0
  239. pyGSTi-0.9.13/test/test_packages/objects/test_hessian.py +403 -0
  240. pyGSTi-0.9.13/test/test_packages/objects/test_instruments.py +349 -0
  241. pyGSTi-0.9.13/test/test_packages/reportb/test_workspace.py +711 -0
  242. pyGSTi-0.9.13/test/test_packages/tools/test_logl.py +89 -0
  243. pyGSTi-0.9.13/test/unit/algorithms/fixtures.py +90 -0
  244. pyGSTi-0.9.13/test/unit/construction/test_modelconstruction.py +818 -0
  245. pyGSTi-0.9.13/test/unit/construction/test_qutrit.py +19 -0
  246. pyGSTi-0.9.13/test/unit/modelmembers/test_kraus_interface.py +261 -0
  247. pyGSTi-0.9.13/test/unit/modelmembers/test_operation.py +815 -0
  248. pyGSTi-0.9.13/test/unit/modelmembers/test_spamvec.py +359 -0
  249. pyGSTi-0.9.13/test/unit/objects/test_circuit.py +792 -0
  250. pyGSTi-0.9.13/test/unit/objects/test_fogi.py +230 -0
  251. pyGSTi-0.9.13/test/unit/objects/test_forwardsim.py +361 -0
  252. pyGSTi-0.9.13/test/unit/objects/test_localnoisemodel.py +134 -0
  253. pyGSTi-0.9.13/test/unit/objects/test_model.py +705 -0
  254. pyGSTi-0.9.13/test/unit/objects/test_modelnoise.py +30 -0
  255. pyGSTi-0.9.13/test/unit/objects/test_objectivefns.py +466 -0
  256. pyGSTi-0.9.13/test/unit/objects/test_polynomial.py +620 -0
  257. pyGSTi-0.9.13/test/unit/optimize/test_simplerlm.py +43 -0
  258. pyGSTi-0.9.13/test/unit/protocols/test_gst.py +423 -0
  259. pyGSTi-0.9.13/test/unit/protocols/test_protocols.py +177 -0
  260. pyGSTi-0.9.13/test/unit/protocols/test_rb.py +721 -0
  261. pyGSTi-0.9.13/test/unit/tools/test_basisconstructors.py +104 -0
  262. pyGSTi-0.9.13/test/unit/tools/test_edesigntools.py +295 -0
  263. pyGSTi-0.9.13/test/unit/tools/test_likelihoodfns.py +86 -0
  264. pyGSTi-0.9.13/test/unit/tools/test_lindbladtools.py +90 -0
  265. pyGSTi-0.9.13/test/unit/tools/test_matrixtools.py +194 -0
  266. pyGSTi-0.9.13/test/unit/tools/test_optools.py +414 -0
  267. pyGSTi-0.9.13/test/unit/tools/test_opttools.py +66 -0
  268. pyGSTi-0.9.12.1/.github/CODEOWNERS +0 -93
  269. pyGSTi-0.9.12.1/.github/workflows/autodeploy.yml +0 -85
  270. pyGSTi-0.9.12.1/.github/workflows/extras.yml +0 -71
  271. pyGSTi-0.9.12.1/.github/workflows/main-mac.yml +0 -61
  272. pyGSTi-0.9.12.1/.github/workflows/main-minimal.yml +0 -72
  273. pyGSTi-0.9.12.1/.github/workflows/main.yml +0 -89
  274. pyGSTi-0.9.12.1/.github/workflows/manualdeploy.yml +0 -77
  275. pyGSTi-0.9.12.1/.github/workflows/notebook.yml +0 -76
  276. pyGSTi-0.9.12.1/.gitignore +0 -139
  277. pyGSTi-0.9.12.1/CHANGELOG +0 -431
  278. pyGSTi-0.9.12.1/PKG-INFO +0 -55
  279. pyGSTi-0.9.12.1/jupyter_notebooks/Examples/BootstrappedErrorBars.ipynb +0 -243
  280. pyGSTi-0.9.12.1/jupyter_notebooks/Examples/CirqIntegration.ipynb +0 -545
  281. pyGSTi-0.9.12.1/jupyter_notebooks/Examples/Leakage.ipynb +0 -363
  282. pyGSTi-0.9.12.1/jupyter_notebooks/Examples/QutritGST.ipynb +0 -219
  283. pyGSTi-0.9.12.1/jupyter_notebooks/Examples/example_files/dataTemplate_qutrit_maxL=4.txt +0 -2018
  284. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/00-Protocols.ipynb +0 -340
  285. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/DriftCharacterization.ipynb +0 -370
  286. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/GST-Driverfunctions.ipynb +0 -329
  287. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/GST-Overview-functionbased.ipynb +0 -330
  288. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/GST-Overview.ipynb +0 -155
  289. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/GST-Protocols.ipynb +0 -509
  290. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/MirrorCircuitBenchmarks.ipynb +0 -468
  291. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/ModelTesting-functions.ipynb +0 -219
  292. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/ModelTesting.ipynb +0 -272
  293. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/RB-CliffordRB.ipynb +0 -218
  294. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/advanced/CliffordRB-Simulation-ImplicitModel.ipynb +0 -283
  295. pyGSTi-0.9.12.1/jupyter_notebooks/Tutorials/algorithms/advanced/Time-dependent-GST.ipynb +0 -740
  296. pyGSTi-0.9.12.1/optional-requirements.txt +0 -14
  297. pyGSTi-0.9.12.1/packages/pygsti/__init__.py +0 -41
  298. pyGSTi-0.9.12.1/pyGSTi.egg-info/PKG-INFO +0 -55
  299. pyGSTi-0.9.12.1/pyGSTi.egg-info/SOURCES.txt +0 -2167
  300. pyGSTi-0.9.12.1/pyGSTi.egg-info/requires.txt +0 -132
  301. pyGSTi-0.9.12.1/pygsti/_version.py +0 -16
  302. pyGSTi-0.9.12.1/pygsti/algorithms/contract.py +0 -434
  303. pyGSTi-0.9.12.1/pygsti/algorithms/core.py +0 -1172
  304. pyGSTi-0.9.12.1/pygsti/algorithms/directx.py +0 -711
  305. pyGSTi-0.9.12.1/pygsti/algorithms/fiducialselection.py +0 -2020
  306. pyGSTi-0.9.12.1/pygsti/algorithms/gaugeopt.py +0 -924
  307. pyGSTi-0.9.12.1/pygsti/algorithms/germselection.py +0 -5015
  308. pyGSTi-0.9.12.1/pygsti/algorithms/mirroring.py +0 -617
  309. pyGSTi-0.9.12.1/pygsti/algorithms/randomcircuit.py +0 -3620
  310. pyGSTi-0.9.12.1/pygsti/algorithms/rbfit.py +0 -579
  311. pyGSTi-0.9.12.1/pygsti/baseobjs/basis.py +0 -2064
  312. pyGSTi-0.9.12.1/pygsti/baseobjs/errorgenbasis.py +0 -648
  313. pyGSTi-0.9.12.1/pygsti/baseobjs/errorgenspace.py +0 -109
  314. pyGSTi-0.9.12.1/pygsti/baseobjs/label.py +0 -2278
  315. pyGSTi-0.9.12.1/pygsti/baseobjs/opcalc/fastopcalc.pyx +0 -1038
  316. pyGSTi-0.9.12.1/pygsti/baseobjs/polynomial.py +0 -1203
  317. pyGSTi-0.9.12.1/pygsti/baseobjs/statespace.py +0 -1332
  318. pyGSTi-0.9.12.1/pygsti/circuits/__init__.py +0 -21
  319. pyGSTi-0.9.12.1/pygsti/circuits/circuit.py +0 -4515
  320. pyGSTi-0.9.12.1/pygsti/circuits/circuitconstruction.py +0 -938
  321. pyGSTi-0.9.12.1/pygsti/circuits/circuitlist.py +0 -207
  322. pyGSTi-0.9.12.1/pygsti/circuits/circuitparser/__init__.py +0 -421
  323. pyGSTi-0.9.12.1/pygsti/circuits/circuitstructure.py +0 -963
  324. pyGSTi-0.9.12.1/pygsti/circuits/cloudcircuitconstruction.py +0 -2568
  325. pyGSTi-0.9.12.1/pygsti/data/datacomparator.py +0 -1027
  326. pyGSTi-0.9.12.1/pygsti/data/dataset.py +0 -3247
  327. pyGSTi-0.9.12.1/pygsti/data/hypothesistest.py +0 -466
  328. pyGSTi-0.9.12.1/pygsti/drivers/bootstrap.py +0 -543
  329. pyGSTi-0.9.12.1/pygsti/drivers/longsequence.py +0 -937
  330. pyGSTi-0.9.12.1/pygsti/evotypes/chp/opreps.py +0 -279
  331. pyGSTi-0.9.12.1/pygsti/evotypes/chp/statereps.py +0 -111
  332. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx/effectcreps.cpp +0 -201
  333. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx/effectreps.pyx +0 -191
  334. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx/opreps.pyx +0 -764
  335. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx/statereps.pyx +0 -180
  336. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx_slow/effectreps.py +0 -195
  337. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx_slow/opreps.py +0 -514
  338. pyGSTi-0.9.12.1/pygsti/evotypes/densitymx_slow/statereps.py +0 -160
  339. pyGSTi-0.9.12.1/pygsti/evotypes/evotype.py +0 -219
  340. pyGSTi-0.9.12.1/pygsti/evotypes/qibo/__init__.py +0 -33
  341. pyGSTi-0.9.12.1/pygsti/evotypes/qibo/effectreps.py +0 -78
  342. pyGSTi-0.9.12.1/pygsti/evotypes/qibo/opreps.py +0 -376
  343. pyGSTi-0.9.12.1/pygsti/evotypes/qibo/povmreps.py +0 -98
  344. pyGSTi-0.9.12.1/pygsti/evotypes/qibo/statereps.py +0 -174
  345. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer/effectreps.pyx +0 -93
  346. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer/opreps.pyx +0 -270
  347. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer/statereps.pyx +0 -166
  348. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer/termreps.pyx +0 -116
  349. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer_slow/effectreps.py +0 -92
  350. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer_slow/opreps.py +0 -221
  351. pyGSTi-0.9.12.1/pygsti/evotypes/stabilizer_slow/statereps.py +0 -121
  352. pyGSTi-0.9.12.1/pygsti/evotypes/statevec/effectreps.pyx +0 -195
  353. pyGSTi-0.9.12.1/pygsti/evotypes/statevec/opreps.pyx +0 -474
  354. pyGSTi-0.9.12.1/pygsti/evotypes/statevec/statereps.pyx +0 -167
  355. pyGSTi-0.9.12.1/pygsti/evotypes/statevec/termreps.pyx +0 -174
  356. pyGSTi-0.9.12.1/pygsti/evotypes/statevec_slow/effectreps.py +0 -192
  357. pyGSTi-0.9.12.1/pygsti/evotypes/statevec_slow/opreps.py +0 -459
  358. pyGSTi-0.9.12.1/pygsti/extras/__init__.py +0 -13
  359. pyGSTi-0.9.12.1/pygsti/extras/drift/stabilityanalyzer.py +0 -2005
  360. pyGSTi-0.9.12.1/pygsti/extras/interpygate/__init__.py +0 -12
  361. pyGSTi-0.9.12.1/pygsti/extras/interpygate/core.py +0 -698
  362. pyGSTi-0.9.12.1/pygsti/extras/interpygate/process_tomography.py +0 -165
  363. pyGSTi-0.9.12.1/pygsti/extras/rb/__init__.py +0 -13
  364. pyGSTi-0.9.12.1/pygsti/extras/rb/benchmarker.py +0 -957
  365. pyGSTi-0.9.12.1/pygsti/extras/rb/dataset.py +0 -378
  366. pyGSTi-0.9.12.1/pygsti/extras/rb/io.py +0 -814
  367. pyGSTi-0.9.12.1/pygsti/extras/rb/simulate.py +0 -1020
  368. pyGSTi-0.9.12.1/pygsti/extras/rpe/rpeconstruction.py +0 -320
  369. pyGSTi-0.9.12.1/pygsti/forwardsims/__init__.py +0 -17
  370. pyGSTi-0.9.12.1/pygsti/forwardsims/forwardsim.py +0 -940
  371. pyGSTi-0.9.12.1/pygsti/forwardsims/mapforwardsim.py +0 -719
  372. pyGSTi-0.9.12.1/pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +0 -640
  373. pyGSTi-0.9.12.1/pygsti/forwardsims/mapforwardsim_calc_generic.py +0 -332
  374. pyGSTi-0.9.12.1/pygsti/forwardsims/matrixforwardsim.py +0 -2057
  375. pyGSTi-0.9.12.1/pygsti/forwardsims/termforwardsim.py +0 -1511
  376. pyGSTi-0.9.12.1/pygsti/forwardsims/termforwardsim_calc_statevec.pyx +0 -2184
  377. pyGSTi-0.9.12.1/pygsti/forwardsims/weakforwardsim.py +0 -197
  378. pyGSTi-0.9.12.1/pygsti/io/__init__.py +0 -21
  379. pyGSTi-0.9.12.1/pygsti/io/legacyio.py +0 -385
  380. pyGSTi-0.9.12.1/pygsti/io/mongodb.py +0 -1058
  381. pyGSTi-0.9.12.1/pygsti/io/stdinput.py +0 -1307
  382. pyGSTi-0.9.12.1/pygsti/layouts/copalayout.py +0 -803
  383. pyGSTi-0.9.12.1/pygsti/layouts/distlayout.py +0 -1441
  384. pyGSTi-0.9.12.1/pygsti/layouts/maplayout.py +0 -250
  385. pyGSTi-0.9.12.1/pygsti/layouts/matrixlayout.py +0 -346
  386. pyGSTi-0.9.12.1/pygsti/layouts/prefixtable.py +0 -335
  387. pyGSTi-0.9.12.1/pygsti/layouts/termlayout.py +0 -226
  388. pyGSTi-0.9.12.1/pygsti/modelmembers/instruments/instrument.py +0 -395
  389. pyGSTi-0.9.12.1/pygsti/modelmembers/instruments/tpinstrument.py +0 -421
  390. pyGSTi-0.9.12.1/pygsti/modelmembers/modelmember.py +0 -1135
  391. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/__init__.py +0 -492
  392. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/affineshiftop.py +0 -205
  393. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/composederrorgen.py +0 -784
  394. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/composedop.py +0 -951
  395. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/denseop.py +0 -656
  396. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/eigpdenseop.py +0 -458
  397. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/embeddederrorgen.py +0 -358
  398. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/embeddedop.py +0 -880
  399. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/experrorgenop.py +0 -841
  400. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/fullarbitraryop.py +0 -164
  401. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/fullcptpop.py +0 -333
  402. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/fulltpop.py +0 -196
  403. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/fullunitaryop.py +0 -261
  404. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/lindbladcoefficients.py +0 -1206
  405. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/lindbladerrorgen.py +0 -1770
  406. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/linearop.py +0 -904
  407. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/opfactory.py +0 -870
  408. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/repeatedop.py +0 -272
  409. pyGSTi-0.9.12.1/pygsti/modelmembers/operations/staticstdop.py +0 -217
  410. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/__init__.py +0 -516
  411. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/basepovm.py +0 -358
  412. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/complementeffect.py +0 -223
  413. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/composedeffect.py +0 -774
  414. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/computationaleffect.py +0 -327
  415. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/computationalpovm.py +0 -209
  416. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/denseeffect.py +0 -142
  417. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/effect.py +0 -493
  418. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/marginalizedpovm.py +0 -320
  419. pyGSTi-0.9.12.1/pygsti/modelmembers/povms/tppovm.py +0 -58
  420. pyGSTi-0.9.12.1/pygsti/modelmembers/states/__init__.py +0 -442
  421. pyGSTi-0.9.12.1/pygsti/modelmembers/states/composedstate.py +0 -893
  422. pyGSTi-0.9.12.1/pygsti/modelmembers/states/computationalstate.py +0 -337
  423. pyGSTi-0.9.12.1/pygsti/modelmembers/states/cptpstate.py +0 -389
  424. pyGSTi-0.9.12.1/pygsti/modelmembers/states/densestate.py +0 -368
  425. pyGSTi-0.9.12.1/pygsti/modelmembers/states/fullpurestate.py +0 -157
  426. pyGSTi-0.9.12.1/pygsti/modelmembers/states/purestate.py +0 -283
  427. pyGSTi-0.9.12.1/pygsti/modelmembers/states/state.py +0 -576
  428. pyGSTi-0.9.12.1/pygsti/modelmembers/states/tpstate.py +0 -208
  429. pyGSTi-0.9.12.1/pygsti/modelmembers/term.py +0 -883
  430. pyGSTi-0.9.12.1/pygsti/modelpacks/_modelpack.py +0 -546
  431. pyGSTi-0.9.12.1/pygsti/modelpacks/smq1Q_ZN.py +0 -69
  432. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XXYYII.py +0 -1169
  433. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XY.py +0 -270
  434. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XYI.py +0 -388
  435. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XYICNOT.py +0 -416
  436. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XYICPHASE.py +0 -422
  437. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XYXX.py +0 -343
  438. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XYZICNOT.py +0 -578
  439. pyGSTi-0.9.12.1/pygsti/modelpacks/smq2Q_XYZZ.py +0 -343
  440. pyGSTi-0.9.12.1/pygsti/modelpacks/stdtarget.py +0 -552
  441. pyGSTi-0.9.12.1/pygsti/models/cloudnoisemodel.py +0 -721
  442. pyGSTi-0.9.12.1/pygsti/models/explicitcalc.py +0 -840
  443. pyGSTi-0.9.12.1/pygsti/models/explicitmodel.py +0 -1744
  444. pyGSTi-0.9.12.1/pygsti/models/fogistore.py +0 -589
  445. pyGSTi-0.9.12.1/pygsti/models/localnoisemodel.py +0 -615
  446. pyGSTi-0.9.12.1/pygsti/models/memberdict.py +0 -389
  447. pyGSTi-0.9.12.1/pygsti/models/model.py +0 -2259
  448. pyGSTi-0.9.12.1/pygsti/models/modelconstruction.py +0 -2482
  449. pyGSTi-0.9.12.1/pygsti/models/modelnoise.py +0 -1071
  450. pyGSTi-0.9.12.1/pygsti/models/modelparaminterposer.py +0 -102
  451. pyGSTi-0.9.12.1/pygsti/models/oplessmodel.py +0 -821
  452. pyGSTi-0.9.12.1/pygsti/models/qutrit.py +0 -295
  453. pyGSTi-0.9.12.1/pygsti/objectivefns/objectivefns.py +0 -6728
  454. pyGSTi-0.9.12.1/pygsti/objectivefns/wildcardbudget.py +0 -1180
  455. pyGSTi-0.9.12.1/pygsti/optimize/__init__.py +0 -19
  456. pyGSTi-0.9.12.1/pygsti/optimize/arraysinterface.py +0 -1268
  457. pyGSTi-0.9.12.1/pygsti/optimize/customcg.py +0 -258
  458. pyGSTi-0.9.12.1/pygsti/optimize/customlm.py +0 -1549
  459. pyGSTi-0.9.12.1/pygsti/optimize/customsolve.py +0 -509
  460. pyGSTi-0.9.12.1/pygsti/optimize/optimize.py +0 -888
  461. pyGSTi-0.9.12.1/pygsti/optimize/wildcardopt.py +0 -1272
  462. pyGSTi-0.9.12.1/pygsti/protocols/confidenceregionfactory.py +0 -1262
  463. pyGSTi-0.9.12.1/pygsti/protocols/estimate.py +0 -946
  464. pyGSTi-0.9.12.1/pygsti/protocols/gst.py +0 -3282
  465. pyGSTi-0.9.12.1/pygsti/protocols/modeltest.py +0 -364
  466. pyGSTi-0.9.12.1/pygsti/protocols/protocol.py +0 -3257
  467. pyGSTi-0.9.12.1/pygsti/protocols/rb.py +0 -1403
  468. pyGSTi-0.9.12.1/pygsti/protocols/treenode.py +0 -320
  469. pyGSTi-0.9.12.1/pygsti/protocols/vb.py +0 -1130
  470. pyGSTi-0.9.12.1/pygsti/protocols/vbdataframe.py +0 -482
  471. pyGSTi-0.9.12.1/pygsti/report/factory.py +0 -1760
  472. pyGSTi-0.9.12.1/pygsti/report/fogidiagram.py +0 -1397
  473. pyGSTi-0.9.12.1/pygsti/report/modelfunction.py +0 -467
  474. pyGSTi-0.9.12.1/pygsti/report/mpl_colormaps.py +0 -692
  475. pyGSTi-0.9.12.1/pygsti/report/plothelpers.py +0 -364
  476. pyGSTi-0.9.12.1/pygsti/report/reportables.py +0 -2604
  477. pyGSTi-0.9.12.1/pygsti/report/templates/offline/pygsti_dashboard.css +0 -618
  478. pyGSTi-0.9.12.1/pygsti/report/templates/offline/pygsti_dashboard.js +0 -188
  479. pyGSTi-0.9.12.1/pygsti/report/workspace.py +0 -3131
  480. pyGSTi-0.9.12.1/pygsti/report/workspaceplots.py +0 -4116
  481. pyGSTi-0.9.12.1/pygsti/tools/basistools.py +0 -560
  482. pyGSTi-0.9.12.1/pygsti/tools/edesigntools.py +0 -855
  483. pyGSTi-0.9.12.1/pygsti/tools/fastcalc.pyx +0 -1310
  484. pyGSTi-0.9.12.1/pygsti/tools/internalgates.py +0 -700
  485. pyGSTi-0.9.12.1/pygsti/tools/jamiolkowski.py +0 -361
  486. pyGSTi-0.9.12.1/pygsti/tools/lindbladtools.py +0 -232
  487. pyGSTi-0.9.12.1/pygsti/tools/listtools.py +0 -499
  488. pyGSTi-0.9.12.1/pygsti/tools/matrixmod2.py +0 -531
  489. pyGSTi-0.9.12.1/pygsti/tools/matrixtools.py +0 -2562
  490. pyGSTi-0.9.12.1/pygsti/tools/nameddict.py +0 -205
  491. pyGSTi-0.9.12.1/pygsti/tools/optools.py +0 -2428
  492. pyGSTi-0.9.12.1/pygsti/tools/pdftools.py +0 -98
  493. pyGSTi-0.9.12.1/pygsti/tools/rbtheory.py +0 -868
  494. pyGSTi-0.9.12.1/pygsti/tools/slicetools.py +0 -351
  495. pyGSTi-0.9.12.1/requirements.txt +0 -5
  496. pyGSTi-0.9.12.1/rtd-requirements.txt +0 -9
  497. pyGSTi-0.9.12.1/scripts/api_names.yaml +0 -3862
  498. pyGSTi-0.9.12.1/setup.cfg +0 -17
  499. pyGSTi-0.9.12.1/setup.py +0 -509
  500. pyGSTi-0.9.12.1/test/performance/mpi_2D_scaling/mpi_test.py +0 -62
  501. pyGSTi-0.9.12.1/test/test_packages/algorithms/test_fogi_gst.py +0 -380
  502. pyGSTi-0.9.12.1/test/test_packages/algorithms/test_germselection.py +0 -175
  503. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/Fake_Dataset_none.txt.cache +0 -0
  504. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/idt_nQsequenceCache.pkl +0 -0
  505. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/test1Qcalc_redmod_exact.json +0 -1720
  506. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/test1Qcalc_redmod_terms.json +0 -1729
  507. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/test1Qcalc_std_exact.json +0 -1813
  508. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/test1Qcalc_std_prunedpath.json +0 -1684
  509. pyGSTi-0.9.12.1/test/test_packages/cmp_chk_files/test1Qcalc_std_terms.json +0 -1684
  510. pyGSTi-0.9.12.1/test/test_packages/drivers/test_drivers.py +0 -320
  511. pyGSTi-0.9.12.1/test/test_packages/drivers/test_timedep.py +0 -174
  512. pyGSTi-0.9.12.1/test/test_packages/extras/test_interpygate.py +0 -338
  513. pyGSTi-0.9.12.1/test/test_packages/iotest/test_codecs.py +0 -353
  514. pyGSTi-0.9.12.1/test/test_packages/iotest/test_stdinput.py +0 -664
  515. pyGSTi-0.9.12.1/test/test_packages/iotest/test_stdinputparser.py +0 -838
  516. pyGSTi-0.9.12.1/test/test_packages/objects/test_evaltree.py +0 -174
  517. pyGSTi-0.9.12.1/test/test_packages/objects/test_gatesets.py +0 -429
  518. pyGSTi-0.9.12.1/test/test_packages/objects/test_hessian.py +0 -410
  519. pyGSTi-0.9.12.1/test/test_packages/objects/test_instruments.py +0 -353
  520. pyGSTi-0.9.12.1/test/test_packages/objects/test_qibogst.py +0 -43
  521. pyGSTi-0.9.12.1/test/test_packages/reportb/test_workspace.py +0 -735
  522. pyGSTi-0.9.12.1/test/test_packages/tools/test_logl.py +0 -71
  523. pyGSTi-0.9.12.1/test/unit/algorithms/fixtures.py +0 -90
  524. pyGSTi-0.9.12.1/test/unit/algorithms/test_directx.py +0 -85
  525. pyGSTi-0.9.12.1/test/unit/construction/test_modelconstruction.py +0 -817
  526. pyGSTi-0.9.12.1/test/unit/construction/test_qutrit.py +0 -19
  527. pyGSTi-0.9.12.1/test/unit/modelmembers/test_kraus_interface.py +0 -249
  528. pyGSTi-0.9.12.1/test/unit/modelmembers/test_operation.py +0 -821
  529. pyGSTi-0.9.12.1/test/unit/modelmembers/test_spamvec.py +0 -359
  530. pyGSTi-0.9.12.1/test/unit/objects/test_circuit.py +0 -660
  531. pyGSTi-0.9.12.1/test/unit/objects/test_evaltree.py +0 -58
  532. pyGSTi-0.9.12.1/test/unit/objects/test_fogi.py +0 -229
  533. pyGSTi-0.9.12.1/test/unit/objects/test_forwardsim.py +0 -423
  534. pyGSTi-0.9.12.1/test/unit/objects/test_localnoisemodel.py +0 -133
  535. pyGSTi-0.9.12.1/test/unit/objects/test_model.py +0 -772
  536. pyGSTi-0.9.12.1/test/unit/objects/test_objectivefns.py +0 -465
  537. pyGSTi-0.9.12.1/test/unit/objects/test_polynomial.py +0 -52
  538. pyGSTi-0.9.12.1/test/unit/objects/test_qibo_evotype.py +0 -127
  539. pyGSTi-0.9.12.1/test/unit/optimize/test_customlm.py +0 -43
  540. pyGSTi-0.9.12.1/test/unit/protocols/test_gst.py +0 -377
  541. pyGSTi-0.9.12.1/test/unit/protocols/test_protocols.py +0 -152
  542. pyGSTi-0.9.12.1/test/unit/protocols/test_rb.py +0 -516
  543. pyGSTi-0.9.12.1/test/unit/tools/test_basisconstructors.py +0 -106
  544. pyGSTi-0.9.12.1/test/unit/tools/test_edesigntools.py +0 -266
  545. pyGSTi-0.9.12.1/test/unit/tools/test_likelihoodfns.py +0 -91
  546. pyGSTi-0.9.12.1/test/unit/tools/test_lindbladtools.py +0 -90
  547. pyGSTi-0.9.12.1/test/unit/tools/test_matrixtools.py +0 -230
  548. pyGSTi-0.9.12.1/test/unit/tools/test_optools.py +0 -435
  549. pyGSTi-0.9.12.1/test/unit/tools/test_opttools.py +0 -66
  550. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.flake8 +0 -0
  551. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.flake8-critical +0 -0
  552. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.gitattributes +0 -0
  553. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  554. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  555. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.github/ci-scripts/before_install.sh +0 -0
  556. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.github/ci-scripts/before_install_macos.sh +0 -0
  557. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.github/ci-scripts/merge.sh +0 -0
  558. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.lint.conf +0 -0
  559. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/.readthedocs.yaml +0 -0
  560. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/CI/github_deploy_key.enc +0 -0
  561. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/CI/push.sh +0 -0
  562. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/CI/send-email +0 -0
  563. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/CONTRIBUTING.md +0 -0
  564. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/LICENSE +0 -0
  565. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/MANIFEST.in +0 -0
  566. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/NOTICE +0 -0
  567. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/README.md +0 -0
  568. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/LICENSE.rst +0 -0
  569. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/Makefile +0 -0
  570. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/NOTICE.rst +0 -0
  571. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/README.md +0 -0
  572. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/index.rst +0 -0
  573. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/attribute.rst +0 -0
  574. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/class.rst +0 -0
  575. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/data.rst +0 -0
  576. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/exception.rst +0 -0
  577. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/function.rst +0 -0
  578. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/method.rst +0 -0
  579. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/module.rst +0 -0
  580. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/package.rst +0 -0
  581. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/_templates/python/property.rst +0 -0
  582. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/conf.py +0 -0
  583. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/index.rst +0 -0
  584. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/notes/formatter.md +0 -0
  585. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/notes/python3.md +0 -0
  586. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/notes/repotools/hooks.md +0 -0
  587. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/notes/repotools/pylint.md +0 -0
  588. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/notes/repotools/test.md +0 -0
  589. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/doc/subpackage_hierarchy.pdf +0 -0
  590. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/1QGST-InterpolatedOps.ipynb +0 -0
  591. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/2QGST-CreatingModels.ipynb +0 -0
  592. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/2QGST-ErrorBars.ipynb +0 -0
  593. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/2QGST-RunningIt.ipynb +0 -0
  594. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/ContextDependence.ipynb +0 -0
  595. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/FisherInformation.ipynb +0 -0
  596. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/GOpt-AddingNewOptimizations.ipynb +0 -0
  597. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/GOpt-NonIdealTargets.ipynb +0 -0
  598. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/MPI-GermSelection.ipynb +0 -0
  599. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/MPI-RunningGST.ipynb +0 -0
  600. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/ModelMemberGraph.ipynb +0 -0
  601. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/Reports-LGSTonly.ipynb +0 -0
  602. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/.git_placeholder +0 -0
  603. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/data/dataset.txt +0 -0
  604. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/data/meta.json +0 -0
  605. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/all_circuits_needing_data.json +0 -0
  606. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/circuit_lists0.json +0 -0
  607. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/circuit_lists1.json +0 -0
  608. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/fiducial_pairs.json +0 -0
  609. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/germs.txt +0 -0
  610. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/meas_fiducials.txt +0 -0
  611. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/meta.json +0 -0
  612. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/prep_fiducials.txt +0 -0
  613. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/processor_spec.json +0 -0
  614. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/edesign/subdirs.json +0 -0
  615. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/_gaugeopt_suite.json +0 -0
  616. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/final_objfn_builder.json +0 -0
  617. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/meta.json +0 -0
  618. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_final iteration estimate.json +0 -0
  619. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_iteration 0 estimate.json +0 -0
  620. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_iteration 1 estimate.json +0 -0
  621. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_seed.json +0 -0
  622. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_stdgaugeopt.json +0 -0
  623. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/models_target.json +0 -0
  624. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/badfit_options.json +0 -0
  625. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/gaugeopt_suite.json +0 -0
  626. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/initial_model.json +0 -0
  627. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/meta.json +0 -0
  628. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/objfn_builders.json +0 -0
  629. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/estimates_CPTPLND/protocol/optimizer.json +0 -0
  630. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/meta.json +0 -0
  631. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/badfit_options.json +0 -0
  632. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/gaugeopt_suite.json +0 -0
  633. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/meta.json +0 -0
  634. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/My2QExample/results/StandardGST/protocol/optimizer.json +0 -0
  635. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/data/dataset.txt +0 -0
  636. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/data/meta.json +0 -0
  637. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/all_circuits_needing_data.json +0 -0
  638. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/circuit_lists0.json +0 -0
  639. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/circuit_lists1.json +0 -0
  640. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/circuit_lists2.json +0 -0
  641. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/germs.txt +0 -0
  642. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/meas_fiducials.txt +0 -0
  643. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/meta.json +0 -0
  644. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/prep_fiducials.txt +0 -0
  645. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/processor_spec.json +0 -0
  646. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/edesign/subdirs.json +0 -0
  647. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/_gaugeopt_suite.json +0 -0
  648. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/final_objfn_builder.json +0 -0
  649. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/meta.json +0 -0
  650. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_final iteration estimate.json +0 -0
  651. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_go0.json +0 -0
  652. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_iteration 0 estimate.json +0 -0
  653. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_iteration 1 estimate.json +0 -0
  654. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_iteration 2 estimate.json +0 -0
  655. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_seed.json +0 -0
  656. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/models_target.json +0 -0
  657. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/badfit_options.json +0 -0
  658. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/gaugeopt_suite.json +0 -0
  659. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/initial_model.json +0 -0
  660. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/meta.json +0 -0
  661. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/objfn_builders.json +0 -0
  662. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/estimates_TP/protocol/optimizer.json +0 -0
  663. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/meta.json +0 -0
  664. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/badfit_options.json +0 -0
  665. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/gaugeopt_suite.json +0 -0
  666. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/meta.json +0 -0
  667. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Examples/example_files/regaugeopt_example/results/StandardGST/protocol/optimizer.json +0 -0
  668. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/FAQ.ipynb +0 -0
  669. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/START_HERE.ipynb +0 -0
  670. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Testing/Model Selection.ipynb +0 -0
  671. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/01-Essential-Objects.ipynb +0 -0
  672. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/02-Using-Essential-Objects.ipynb +0 -0
  673. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/03-Miscellaneous.ipynb +0 -0
  674. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/CircuitSimulation.ipynb +0 -0
  675. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/DataSimulation.ipynb +0 -0
  676. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/DatasetComparison.ipynb +0 -0
  677. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/IdleTomography.ipynb +0 -0
  678. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-BinaryRB.ipynb +0 -0
  679. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-DirectRB.ipynb +0 -0
  680. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-MirrorRB-Universal-Gate-Sets.ipynb +0 -0
  681. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-MirrorRB.ipynb +0 -0
  682. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-MultiRBExperiments.ipynb +0 -0
  683. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-Overview.ipynb +0 -0
  684. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RB-Samplers.ipynb +0 -0
  685. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/RobustPhaseEstimation.ipynb +0 -0
  686. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/VolumetricBenchmarks.ipynb +0 -0
  687. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/CircuitSimulation-CHP.ipynb +0 -0
  688. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/CliffordRB-Simulation-ExplicitModel.ipynb +0 -0
  689. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/ForwardSimulationTypes.ipynb +0 -0
  690. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GST-FiducialAndGermSelection.ipynb +0 -0
  691. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GST-FiducialPairReduction.ipynb +0 -0
  692. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GST-LowLevel.ipynb +0 -0
  693. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/algorithms/advanced/GaugeOpt.ipynb +0 -0
  694. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/Circuit.ipynb +0 -0
  695. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/CircuitLists.ipynb +0 -0
  696. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/DataSet.ipynb +0 -0
  697. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ExperimentDesign.ipynb +0 -0
  698. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ExplicitModel.ipynb +0 -0
  699. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ImplicitModel.ipynb +0 -0
  700. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ModelNoise.ipynb +0 -0
  701. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ModelParameterization.ipynb +0 -0
  702. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/ProcessorSpec.ipynb +0 -0
  703. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/CustomOperator.ipynb +0 -0
  704. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/CustomPOVM.ipynb +0 -0
  705. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/GSTCircuitConstruction.ipynb +0 -0
  706. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/IBMQExperiment.ipynb +0 -0
  707. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/Instruments.ipynb +0 -0
  708. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/InterpolatedOperators.ipynb +0 -0
  709. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/MatrixBases.ipynb +0 -0
  710. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/ModelPacks.ipynb +0 -0
  711. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/MultiDataSet.ipynb +0 -0
  712. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/OperationFactories.ipynb +0 -0
  713. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/Operators.ipynb +0 -0
  714. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/ParameterBounds.ipynb +0 -0
  715. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/ParameterLabels.ipynb +0 -0
  716. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/Results.ipynb +0 -0
  717. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/StateSpace.ipynb +0 -0
  718. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/objects/advanced/TimestampedDataSets.ipynb +0 -0
  719. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/other/FileIO.ipynb +0 -0
  720. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/Metrics.ipynb +0 -0
  721. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/ModelAnalysisMetrics.ipynb +0 -0
  722. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/ReportGeneration.ipynb +0 -0
  723. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/Workspace.ipynb +0 -0
  724. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/WorkspaceExamples.ipynb +0 -0
  725. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/reporting/advanced/WorkspaceSwitchboards.ipynb +0 -0
  726. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/.git_placeholder +0 -0
  727. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/.placeholder +0 -0
  728. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/DatasetWith2Passes.txt +0 -0
  729. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/DatasetWithTimestamps.txt +0 -0
  730. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Dataset.txt +0 -0
  731. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Dataset_LowCnts.txt +0 -0
  732. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/data/dataset.txt +0 -0
  733. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/data/meta.json +0 -0
  734. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/all_circuits_needing_data.json +0 -0
  735. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists0.json +0 -0
  736. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists1.json +0 -0
  737. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists2.json +0 -0
  738. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists3.json +0 -0
  739. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists4.json +0 -0
  740. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists5.json +0 -0
  741. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists6.json +0 -0
  742. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/circuit_lists7.json +0 -0
  743. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/germs.txt +0 -0
  744. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/meas_fiducials.txt +0 -0
  745. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/meta.json +0 -0
  746. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/prep_fiducials.txt +0 -0
  747. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/processor_spec.json +0 -0
  748. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/edesign/subdirs.json +0 -0
  749. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/_gaugeopt_suite.json +0 -0
  750. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/final_objfn_builder.json +0 -0
  751. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/meta.json +0 -0
  752. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_final iteration estimate.json +0 -0
  753. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 0 estimate.json +0 -0
  754. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 1 estimate.json +0 -0
  755. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 2 estimate.json +0 -0
  756. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 3 estimate.json +0 -0
  757. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 4 estimate.json +0 -0
  758. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 5 estimate.json +0 -0
  759. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 6 estimate.json +0 -0
  760. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_iteration 7 estimate.json +0 -0
  761. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_my_gauge_opt.json +0 -0
  762. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_seed.json +0 -0
  763. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/models_target.json +0 -0
  764. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/badfit_options.json +0 -0
  765. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/gaugeopt_suite.json +0 -0
  766. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/initial_model.json +0 -0
  767. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/meta.json +0 -0
  768. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/objfn_builders.json +0 -0
  769. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/estimates_GSTwithMyGO/protocol/optimizer.json +0 -0
  770. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/meta.json +0 -0
  771. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/badfit_options.json +0 -0
  772. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/gaugeopt_suite.json +0 -0
  773. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/initial_model.json +0 -0
  774. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/meta.json +0 -0
  775. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/objfn_builders.json +0 -0
  776. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GSTwithMyGO/protocol/optimizer.json +0 -0
  777. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/_gaugeopt_suite.json +0 -0
  778. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/final_objfn_builder.json +0 -0
  779. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/meta.json +0 -0
  780. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_final iteration estimate.json +0 -0
  781. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 0 estimate.json +0 -0
  782. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 1 estimate.json +0 -0
  783. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 2 estimate.json +0 -0
  784. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 3 estimate.json +0 -0
  785. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 4 estimate.json +0 -0
  786. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 5 estimate.json +0 -0
  787. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 6 estimate.json +0 -0
  788. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_iteration 7 estimate.json +0 -0
  789. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_seed.json +0 -0
  790. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_stdgaugeopt.json +0 -0
  791. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/models_target.json +0 -0
  792. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/badfit_options.json +0 -0
  793. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/gaugeopt_suite.json +0 -0
  794. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/initial_model.json +0 -0
  795. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/meta.json +0 -0
  796. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/objfn_builders.json +0 -0
  797. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/estimates_GateSetTomography/protocol/optimizer.json +0 -0
  798. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/meta.json +0 -0
  799. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/badfit_options.json +0 -0
  800. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/gaugeopt_suite.json +0 -0
  801. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/initial_model.json +0 -0
  802. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/meta.json +0 -0
  803. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/objfn_builders.json +0 -0
  804. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/GateSetTomography/protocol/optimizer.json +0 -0
  805. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/_gaugeopt_suite.json +0 -0
  806. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/final_objfn_builder.json +0 -0
  807. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/meta.json +0 -0
  808. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_final iteration estimate.json +0 -0
  809. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 0 estimate.json +0 -0
  810. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 1 estimate.json +0 -0
  811. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 2 estimate.json +0 -0
  812. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 3 estimate.json +0 -0
  813. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 4 estimate.json +0 -0
  814. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 5 estimate.json +0 -0
  815. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 6 estimate.json +0 -0
  816. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_iteration 7 estimate.json +0 -0
  817. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_seed.json +0 -0
  818. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_stdgaugeopt.json +0 -0
  819. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/models_target.json +0 -0
  820. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/badfit_options.json +0 -0
  821. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/gaugeopt_suite.json +0 -0
  822. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/initial_model.json +0 -0
  823. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/meta.json +0 -0
  824. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/objfn_builders.json +0 -0
  825. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_CPTP/protocol/optimizer.json +0 -0
  826. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/_gaugeopt_suite.json +0 -0
  827. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/final_objfn_builder.json +0 -0
  828. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/meta.json +0 -0
  829. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_final iteration estimate.json +0 -0
  830. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 0 estimate.json +0 -0
  831. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 1 estimate.json +0 -0
  832. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 2 estimate.json +0 -0
  833. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 3 estimate.json +0 -0
  834. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 4 estimate.json +0 -0
  835. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 5 estimate.json +0 -0
  836. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 6 estimate.json +0 -0
  837. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_iteration 7 estimate.json +0 -0
  838. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_stdgaugeopt.json +0 -0
  839. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_Target/models_target.json +0 -0
  840. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/_gaugeopt_suite.json +0 -0
  841. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/final_objfn_builder.json +0 -0
  842. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/meta.json +0 -0
  843. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_final iteration estimate.json +0 -0
  844. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 0 estimate.json +0 -0
  845. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 1 estimate.json +0 -0
  846. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 2 estimate.json +0 -0
  847. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 3 estimate.json +0 -0
  848. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 4 estimate.json +0 -0
  849. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 5 estimate.json +0 -0
  850. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 6 estimate.json +0 -0
  851. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_iteration 7 estimate.json +0 -0
  852. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_seed.json +0 -0
  853. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_stdgaugeopt.json +0 -0
  854. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/models_target.json +0 -0
  855. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/badfit_options.json +0 -0
  856. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/gaugeopt_suite.json +0 -0
  857. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/initial_model.json +0 -0
  858. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/meta.json +0 -0
  859. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/objfn_builders.json +0 -0
  860. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/estimates_full TP/protocol/optimizer.json +0 -0
  861. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/meta.json +0 -0
  862. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/badfit_options.json +0 -0
  863. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/gaugeopt_suite.json +0 -0
  864. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/meta.json +0 -0
  865. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data/results/StandardGST/protocol/optimizer.json +0 -0
  866. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/data/dataset.txt +0 -0
  867. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/data/meta.json +0 -0
  868. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/all_circuits_needing_data.json +0 -0
  869. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists0.json +0 -0
  870. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists1.json +0 -0
  871. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists2.json +0 -0
  872. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists3.json +0 -0
  873. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists4.json +0 -0
  874. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists5.json +0 -0
  875. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists6.json +0 -0
  876. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/circuit_lists7.json +0 -0
  877. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/germs.txt +0 -0
  878. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/meas_fiducials.txt +0 -0
  879. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/meta.json +0 -0
  880. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/prep_fiducials.txt +0 -0
  881. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/processor_spec.json +0 -0
  882. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_GST_Data_LowCnts/edesign/subdirs.json +0 -0
  883. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/data/dataset.txt +0 -0
  884. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/data/meta.json +0 -0
  885. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/all_circuits_needing_data.txt +0 -0
  886. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists0.json +0 -0
  887. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists1.json +0 -0
  888. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists2.json +0 -0
  889. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/circuit_lists3.json +0 -0
  890. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/meta.json +0 -0
  891. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/processor_spec.json +0 -0
  892. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/edesign/subdirs.json +0 -0
  893. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/_gaugeopt_suite.json +0 -0
  894. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/final_objfn_builder.json +0 -0
  895. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/meta.json +0 -0
  896. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_final iteration estimate.json +0 -0
  897. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 0 estimate.json +0 -0
  898. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 1 estimate.json +0 -0
  899. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 2 estimate.json +0 -0
  900. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_iteration 3 estimate.json +0 -0
  901. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_seed.json +0 -0
  902. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_stdgaugeopt.json +0 -0
  903. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/models_target.json +0 -0
  904. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/badfit_options.json +0 -0
  905. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/gaugeopt_suite.json +0 -0
  906. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/initial_model.json +0 -0
  907. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/meta.json +0 -0
  908. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/objfn_builders.json +0 -0
  909. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/estimates_GSTwithReducedData/protocol/optimizer.json +0 -0
  910. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/meta.json +0 -0
  911. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/badfit_options.json +0 -0
  912. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/gaugeopt_suite.json +0 -0
  913. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/initial_model.json +0 -0
  914. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/meta.json +0 -0
  915. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/objfn_builders.json +0 -0
  916. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_Reduced_GST_Data/results/GSTwithReducedData/protocol/optimizer.json +0 -0
  917. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_TinyDataset.txt +0 -0
  918. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/Example_depolarizedModel.json +0 -0
  919. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/GettingStartedDataTemplate.txt +0 -0
  920. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/MyCircuits.txt +0 -0
  921. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/MySimulatedDRBData.txt +0 -0
  922. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/TDDataset.txt +0 -0
  923. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/TinyMultiDataset.txt +0 -0
  924. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/A/edesign/all_circuits_needing_data.txt +0 -0
  925. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/A/edesign/meta.json +0 -0
  926. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/A/edesign/subdirs.json +0 -0
  927. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/B/edesign/all_circuits_needing_data.txt +0 -0
  928. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/B/edesign/meta.json +0 -0
  929. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/B/edesign/subdirs.json +0 -0
  930. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/C/edesign/all_circuits_needing_data.txt +0 -0
  931. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/C/edesign/meta.json +0 -0
  932. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/C/edesign/subdirs.json +0 -0
  933. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/edesign/all_circuits_needing_data.txt +0 -0
  934. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/edesign/meta.json +0 -0
  935. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_combined_edesign_root/edesign/subdirs.json +0 -0
  936. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_edesign_root/edesign/circuits.txt +0 -0
  937. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/all_circuits_needing_data.json +0 -0
  938. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/circuit_lists0.json +0 -0
  939. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/circuit_lists1.json +0 -0
  940. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/circuit_lists2.json +0 -0
  941. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/germs.txt +0 -0
  942. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/meas_fiducials.txt +0 -0
  943. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/meta.json +0 -0
  944. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/prep_fiducials.txt +0 -0
  945. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/processor_spec.json +0 -0
  946. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_gst_edesign_root/edesign/subdirs.json +0 -0
  947. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/0/edesign/all_circuits_needing_data.txt +0 -0
  948. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/0/edesign/meta.json +0 -0
  949. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/0/edesign/subdirs.json +0 -0
  950. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/1/edesign/all_circuits_needing_data.txt +0 -0
  951. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/1/edesign/meta.json +0 -0
  952. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/1/edesign/subdirs.json +0 -0
  953. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/edesign/all_circuits_needing_data.txt +0 -0
  954. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/edesign/meta.json +0 -0
  955. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/example_simultaneous_edesign_root/edesign/subdirs.json +0 -0
  956. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/intermediate_meas_dataset.txt +0 -0
  957. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/data/dataset.txt +0 -0
  958. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/data/meta.json +0 -0
  959. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/all_circuits_needing_data.json +0 -0
  960. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists0.json +0 -0
  961. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists1.json +0 -0
  962. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists2.json +0 -0
  963. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists3.json +0 -0
  964. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists4.json +0 -0
  965. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/circuit_lists5.json +0 -0
  966. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/germs.txt +0 -0
  967. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/meas_fiducials.txt +0 -0
  968. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/meta.json +0 -0
  969. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/prep_fiducials.txt +0 -0
  970. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/processor_spec.json +0 -0
  971. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_gst_dir/edesign/subdirs.json +0 -0
  972. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/test_pspec.json +0 -0
  973. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/timeseries_data.txt +0 -0
  974. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/timeseries_probabilities.txt +0 -0
  975. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/timestamped_dataset.txt +0 -0
  976. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/data/dataset.txt +0 -0
  977. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/data/meta.json +0 -0
  978. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/edesign/all_circuits_needing_data.txt +0 -0
  979. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/edesign/meta.json +0 -0
  980. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/edesign/subdirs.json +0 -0
  981. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/all_circuits_needing_data.txt +0 -0
  982. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/circuit_lists0.txt +0 -0
  983. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/circuit_lists1.txt +0 -0
  984. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
  985. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/idealout_lists.json +0 -0
  986. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/meta.json +0 -0
  987. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q0_Q1/edesign/subdirs.json +0 -0
  988. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/all_circuits_needing_data.txt +0 -0
  989. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/alt_actual_circuits_executed.txt +0 -0
  990. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/circuit_lists0.txt +0 -0
  991. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/circuit_lists1.txt +0 -0
  992. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
  993. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/idealout_lists.json +0 -0
  994. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/meta.json +0 -0
  995. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/Q2_Q3/edesign/subdirs.json +0 -0
  996. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/edesign/all_circuits_needing_data.txt +0 -0
  997. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/edesign/meta.json +0 -0
  998. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specA/edesign/subdirs.json +0 -0
  999. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/all_circuits_needing_data.txt +0 -0
  1000. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/alt_actual_circuits_executed.txt +0 -0
  1001. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/circuit_lists0.txt +0 -0
  1002. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/circuit_lists1.txt +0 -0
  1003. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
  1004. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/idealout_lists.json +0 -0
  1005. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/meta.json +0 -0
  1006. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q0/edesign/subdirs.json +0 -0
  1007. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/all_circuits_needing_data.txt +0 -0
  1008. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/alt_actual_circuits_executed.txt +0 -0
  1009. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/circuit_lists0.txt +0 -0
  1010. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/circuit_lists1.txt +0 -0
  1011. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
  1012. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/idealout_lists.json +0 -0
  1013. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/meta.json +0 -0
  1014. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q1/edesign/subdirs.json +0 -0
  1015. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/all_circuits_needing_data.txt +0 -0
  1016. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/alt_actual_circuits_executed.txt +0 -0
  1017. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/circuit_lists0.txt +0 -0
  1018. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/circuit_lists1.txt +0 -0
  1019. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
  1020. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/idealout_lists.json +0 -0
  1021. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/meta.json +0 -0
  1022. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q2/edesign/subdirs.json +0 -0
  1023. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/all_circuits_needing_data.txt +0 -0
  1024. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/alt_actual_circuits_executed.txt +0 -0
  1025. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/circuit_lists0.txt +0 -0
  1026. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/circuit_lists1.txt +0 -0
  1027. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/default_protocols_ByDepthSummaryStatistics/meta.json +0 -0
  1028. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/idealout_lists.json +0 -0
  1029. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/meta.json +0 -0
  1030. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/Q3/edesign/subdirs.json +0 -0
  1031. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/edesign/all_circuits_needing_data.txt +0 -0
  1032. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/edesign/meta.json +0 -0
  1033. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/jupyter_notebooks/Tutorials/tutorial_files/vb_example/specB/edesign/subdirs.json +0 -0
  1034. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pyGSTi.egg-info/dependency_links.txt +0 -0
  1035. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pyGSTi.egg-info/top_level.txt +0 -0
  1036. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/__init__.py +0 -0
  1037. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/__init__.py +0 -0
  1038. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/compilers.py +0 -0
  1039. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/fiducialpairreduction.py +0 -0
  1040. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/grammatrix.py +0 -0
  1041. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/grasp.py +0 -0
  1042. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/robust_phase_estimation.py +0 -0
  1043. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/algorithms/scoring.py +0 -0
  1044. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/__init__.py +0 -0
  1045. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/_compatibility.py +0 -0
  1046. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/advancedoptions.py +0 -0
  1047. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/basisconstructors.py +0 -0
  1048. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/errorgenlabel.py +0 -0
  1049. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/exceptions.py +0 -0
  1050. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/mongoserializable.py +0 -0
  1051. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/nicelyserializable.py +0 -0
  1052. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/opcalc/__init__.py +0 -0
  1053. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/opcalc/slowopcalc.py +0 -0
  1054. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/outcomelabeldict.py +0 -0
  1055. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/profiler.py +0 -0
  1056. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/protectedarray.py +0 -0
  1057. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/qubitgraph.py +0 -0
  1058. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/resourceallocation.py +0 -0
  1059. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/smartcache.py +0 -0
  1060. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/unitarygatefunction.py +0 -0
  1061. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/baseobjs/verbosityprinter.py +0 -0
  1062. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/circuits/circuitparser/fastcircuitparser.pyx +0 -0
  1063. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/circuits/circuitparser/slowcircuitparser.py +0 -0
  1064. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/circuits/gstcircuits.py +0 -0
  1065. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/circuits/rpecircuits.py +0 -0
  1066. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/data/__init__.py +0 -0
  1067. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/data/datasetconstruction.py +0 -0
  1068. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/data/freedataset.py +0 -0
  1069. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/data/multidataset.py +0 -0
  1070. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/data/rpedata.py +0 -0
  1071. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/drivers/__init__.py +0 -0
  1072. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/__init__.py +0 -0
  1073. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/basecreps.cpp +0 -0
  1074. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/basecreps.h +0 -0
  1075. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/basereps.py +0 -0
  1076. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/basereps_cython.pxd +0 -0
  1077. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/basereps_cython.pyx +0 -0
  1078. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/chp/__init__.py +0 -0
  1079. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/chp/effectreps.py +0 -0
  1080. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/chp/povmreps.py +0 -0
  1081. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/__init__.py +0 -0
  1082. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/effectcreps.h +0 -0
  1083. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/effectreps.pxd +0 -0
  1084. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/opcreps.cpp +0 -0
  1085. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/opcreps.h +0 -0
  1086. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/opreps.pxd +0 -0
  1087. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/statecreps.cpp +0 -0
  1088. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/statecreps.h +0 -0
  1089. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx/statereps.pxd +0 -0
  1090. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/densitymx_slow/__init__.py +0 -0
  1091. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/__init__.py +0 -0
  1092. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/effectcreps.cpp +0 -0
  1093. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/effectcreps.h +0 -0
  1094. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/effectreps.pxd +0 -0
  1095. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/opcreps.cpp +0 -0
  1096. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/opcreps.h +0 -0
  1097. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/opreps.pxd +0 -0
  1098. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/statecreps.cpp +0 -0
  1099. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/statecreps.h +0 -0
  1100. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/statereps.pxd +0 -0
  1101. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/termcreps.cpp +0 -0
  1102. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/termcreps.h +0 -0
  1103. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer/termreps.pxd +0 -0
  1104. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer_slow/__init__.py +0 -0
  1105. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/stabilizer_slow/stabilizer.py +0 -0
  1106. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/__init__.py +0 -0
  1107. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/effectcreps.cpp +0 -0
  1108. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/effectcreps.h +0 -0
  1109. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/effectreps.pxd +0 -0
  1110. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/opcreps.cpp +0 -0
  1111. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/opcreps.h +0 -0
  1112. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/opreps.pxd +0 -0
  1113. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/statecreps.cpp +0 -0
  1114. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/statecreps.h +0 -0
  1115. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/statereps.pxd +0 -0
  1116. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/termcreps.cpp +0 -0
  1117. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/termcreps.h +0 -0
  1118. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec/termreps.pxd +0 -0
  1119. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec_slow/__init__.py +0 -0
  1120. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/evotypes/statevec_slow/statereps.py +0 -0
  1121. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/crosstalk/__init__.py +0 -0
  1122. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/crosstalk/core.py +0 -0
  1123. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/crosstalk/objects.py +0 -0
  1124. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/__init__.py +0 -0
  1125. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/devcore.py +0 -0
  1126. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/experimentaldevice.py +0 -0
  1127. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_algiers.py +0 -0
  1128. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_athens.py +0 -0
  1129. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_auckland.py +0 -0
  1130. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_belem.py +0 -0
  1131. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_bogota.py +0 -0
  1132. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_brisbane.py +0 -0
  1133. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_burlington.py +0 -0
  1134. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_cairo.py +0 -0
  1135. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_cambridge.py +0 -0
  1136. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_casablanca.py +0 -0
  1137. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_essex.py +0 -0
  1138. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_guadalupe.py +0 -0
  1139. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_hanoi.py +0 -0
  1140. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_kolkata.py +0 -0
  1141. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_lagos.py +0 -0
  1142. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_lima.py +0 -0
  1143. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_london.py +0 -0
  1144. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_manhattan.py +0 -0
  1145. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_manila.py +0 -0
  1146. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_melbourne.py +0 -0
  1147. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_montreal.py +0 -0
  1148. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_mumbai.py +0 -0
  1149. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_nairobi.py +0 -0
  1150. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_nazca.py +0 -0
  1151. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_ourense.py +0 -0
  1152. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_perth.py +0 -0
  1153. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_quito.py +0 -0
  1154. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_rome.py +0 -0
  1155. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_rueschlikon.py +0 -0
  1156. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_santiago.py +0 -0
  1157. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_sherbrooke.py +0 -0
  1158. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_sydney.py +0 -0
  1159. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_tenerife.py +0 -0
  1160. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_toronto.py +0 -0
  1161. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_vigo.py +0 -0
  1162. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/ibmq_yorktown.py +0 -0
  1163. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_agave.py +0 -0
  1164. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_aspen4.py +0 -0
  1165. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_aspen6.py +0 -0
  1166. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/devices/rigetti_aspen7.py +0 -0
  1167. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/drift/__init__.py +0 -0
  1168. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/drift/driftreport.py +0 -0
  1169. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/drift/probtrajectory.py +0 -0
  1170. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/drift/signal.py +0 -0
  1171. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/drift/trmodel.py +0 -0
  1172. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/ibmq/__init__.py +0 -0
  1173. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/ibmq/ibmqcore.py +0 -0
  1174. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/idletomography/__init__.py +0 -0
  1175. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idtcore.py +0 -0
  1176. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idtreport.py +0 -0
  1177. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idtresults.py +0 -0
  1178. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/idletomography/idttools.py +0 -0
  1179. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/idletomography/pauliobjs.py +0 -0
  1180. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/rpe/__init__.py +0 -0
  1181. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpeconfig.py +0 -0
  1182. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpeconfig_GxPi2_GyPi2_00.py +0 -0
  1183. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpeconfig_GxPi2_GyPi2_UpDn.py +0 -0
  1184. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/extras/rpe/rpetools.py +0 -0
  1185. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/forwardsims/distforwardsim.py +0 -0
  1186. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/forwardsims/successfailfwdsim.py +0 -0
  1187. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/forwardsims/termforwardsim_calc_generic.py +0 -0
  1188. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/forwardsims/termforwardsim_calc_stabilizer.pyx +0 -0
  1189. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/io/metadir.py +0 -0
  1190. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/io/readers.py +0 -0
  1191. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/io/writers.py +0 -0
  1192. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/layouts/__init__.py +0 -0
  1193. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/layouts/cachedlayout.py +0 -0
  1194. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/layouts/evaltree.py +0 -0
  1195. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/__init__.py +0 -0
  1196. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/errorgencontainer.py +0 -0
  1197. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/instruments/__init__.py +0 -0
  1198. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/instruments/tpinstrumentop.py +0 -0
  1199. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/modelmembergraph.py +0 -0
  1200. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/depolarizeop.py +0 -0
  1201. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/identitypluserrorgenop.py +0 -0
  1202. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/krausop.py +0 -0
  1203. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/lpdenseop.py +0 -0
  1204. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/staticarbitraryop.py +0 -0
  1205. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/staticcliffordop.py +0 -0
  1206. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/staticunitaryop.py +0 -0
  1207. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/operations/stochasticop.py +0 -0
  1208. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/composedpovm.py +0 -0
  1209. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/conjugatedeffect.py +0 -0
  1210. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/fulleffect.py +0 -0
  1211. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/fullpureeffect.py +0 -0
  1212. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/povm.py +0 -0
  1213. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/staticeffect.py +0 -0
  1214. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/staticpureeffect.py +0 -0
  1215. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/tensorprodeffect.py +0 -0
  1216. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/tensorprodpovm.py +0 -0
  1217. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/povms/unconstrainedpovm.py +0 -0
  1218. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/states/fullstate.py +0 -0
  1219. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/states/staticpurestate.py +0 -0
  1220. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/states/staticstate.py +0 -0
  1221. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelmembers/states/tensorprodstate.py +0 -0
  1222. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/__init__.py +0 -0
  1223. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/__init__.py +0 -0
  1224. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_Cliffords.py +0 -0
  1225. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XY.py +0 -0
  1226. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XYI.py +0 -0
  1227. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XYZI.py +0 -0
  1228. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_XZ.py +0 -0
  1229. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_ZN.py +0 -0
  1230. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std1Q_pi4_pi2_XZ.py +0 -0
  1231. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XXII.py +0 -0
  1232. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XXYYII.py +0 -0
  1233. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XY.py +0 -0
  1234. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYCNOT.py +0 -0
  1235. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYCPHASE.py +0 -0
  1236. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYI.py +0 -0
  1237. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYI1.py +0 -0
  1238. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYI2.py +0 -0
  1239. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYICNOT.py +0 -0
  1240. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYICPHASE.py +0 -0
  1241. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/std2Q_XYZICNOT.py +0 -0
  1242. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/legacy/stdQT_XYIMS.py +0 -0
  1243. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XY.py +0 -0
  1244. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XYI.py +0 -0
  1245. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XYZI.py +0 -0
  1246. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_XZ.py +0 -0
  1247. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_Xpi2_rpe.py +0 -0
  1248. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_Ypi2_rpe.py +0 -0
  1249. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq1Q_pi4_pi2_XZ.py +0 -0
  1250. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XXII.py +0 -0
  1251. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XXII_condensed.py +0 -0
  1252. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XXYYII_condensed.py +0 -0
  1253. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYCNOT.py +0 -0
  1254. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYCPHASE.py +0 -0
  1255. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYI1.py +0 -0
  1256. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/modelpacks/smq2Q_XYI2.py +0 -0
  1257. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/models/__init__.py +0 -0
  1258. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/models/gaugegroup.py +0 -0
  1259. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/models/implicitmodel.py +0 -0
  1260. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/models/layerrules.py +0 -0
  1261. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/models/rpemodel.py +0 -0
  1262. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/models/stencillabel.py +0 -0
  1263. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/objectivefns/__init__.py +0 -0
  1264. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/processors/__init__.py +0 -0
  1265. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/processors/compilationrules.py +0 -0
  1266. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/processors/processorspec.py +0 -0
  1267. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/protocols/__init__.py +0 -0
  1268. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/protocols/freeformsim.py +0 -0
  1269. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/protocols/rpe.py +0 -0
  1270. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/protocols/stability.py +0 -0
  1271. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/__init__.py +0 -0
  1272. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/autotitle.py +0 -0
  1273. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/cell.py +0 -0
  1274. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/colormaps.py +0 -0
  1275. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/convert.py +0 -0
  1276. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/figure.py +0 -0
  1277. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/formatter.py +0 -0
  1278. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/formatters.py +0 -0
  1279. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/html.py +0 -0
  1280. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/latex.py +0 -0
  1281. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/merge_helpers.py +0 -0
  1282. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/notebook.py +0 -0
  1283. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/notebookcell.py +0 -0
  1284. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/parse_notebook_text.py +0 -0
  1285. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/plotly_plot_ex.py +0 -0
  1286. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/python.py +0 -0
  1287. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/report.py +0 -0
  1288. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/reportableqty.py +0 -0
  1289. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/row.py +0 -0
  1290. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/__init__.py +0 -0
  1291. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/datacomparison.py +0 -0
  1292. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/drift.py +0 -0
  1293. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/gauge.py +0 -0
  1294. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/goodness.py +0 -0
  1295. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/help.py +0 -0
  1296. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/idle.py +0 -0
  1297. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/meta.py +0 -0
  1298. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/section/summary.py +0 -0
  1299. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/table.py +0 -0
  1300. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/CodeCell.json +0 -0
  1301. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/Empty.ipynb +0 -0
  1302. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/MDcell.json +0 -0
  1303. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/drift_html_report/main.html +0 -0
  1304. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/drift_html_report/tabs/AjaxError.html +0 -0
  1305. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/drift_html_report/tabs/Drift.html +0 -0
  1306. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/main.html +0 -0
  1307. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/tabs/AjaxError.html +0 -0
  1308. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/tabs/DataComparison.html +0 -0
  1309. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/idletomography_html_report/tabs/IdleTomography.html +0 -0
  1310. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/README.txt +0 -0
  1311. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/auto-render.min.js +0 -0
  1312. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.eot +0 -0
  1313. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.ttf +0 -0
  1314. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.woff +0 -0
  1315. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  1316. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.eot +0 -0
  1317. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  1318. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  1319. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  1320. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.eot +0 -0
  1321. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  1322. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  1323. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  1324. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.eot +0 -0
  1325. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  1326. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  1327. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  1328. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.eot +0 -0
  1329. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  1330. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  1331. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  1332. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.eot +0 -0
  1333. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.ttf +0 -0
  1334. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.woff +0 -0
  1335. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Bold.woff2 +0 -0
  1336. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.eot +0 -0
  1337. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.ttf +0 -0
  1338. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.woff +0 -0
  1339. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Italic.woff2 +0 -0
  1340. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.eot +0 -0
  1341. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.ttf +0 -0
  1342. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.woff +0 -0
  1343. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Main-Regular.woff2 +0 -0
  1344. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.eot +0 -0
  1345. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  1346. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  1347. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  1348. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.eot +0 -0
  1349. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.ttf +0 -0
  1350. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.woff +0 -0
  1351. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Italic.woff2 +0 -0
  1352. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.eot +0 -0
  1353. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.ttf +0 -0
  1354. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.woff +0 -0
  1355. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Math-Regular.woff2 +0 -0
  1356. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.eot +0 -0
  1357. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  1358. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  1359. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  1360. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.eot +0 -0
  1361. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  1362. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  1363. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  1364. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.eot +0 -0
  1365. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  1366. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  1367. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  1368. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.eot +0 -0
  1369. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.ttf +0 -0
  1370. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.woff +0 -0
  1371. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Script-Regular.woff2 +0 -0
  1372. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.eot +0 -0
  1373. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.ttf +0 -0
  1374. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.woff +0 -0
  1375. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  1376. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.eot +0 -0
  1377. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.ttf +0 -0
  1378. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.woff +0 -0
  1379. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  1380. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.eot +0 -0
  1381. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.ttf +0 -0
  1382. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.woff +0 -0
  1383. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  1384. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.eot +0 -0
  1385. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.ttf +0 -0
  1386. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.woff +0 -0
  1387. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  1388. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.eot +0 -0
  1389. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  1390. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  1391. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  1392. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunbi.otf +0 -0
  1393. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunbx.otf +0 -0
  1394. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunbxo.otf +0 -0
  1395. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunrm.otf +0 -0
  1396. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunsi.otf +0 -0
  1397. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunss.otf +0 -0
  1398. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunsx.otf +0 -0
  1399. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/fonts/cmunti.otf +0 -0
  1400. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/favicon-16x16.png +0 -0
  1401. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/favicon-32x32.png +0 -0
  1402. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/favicon-96x96.png +0 -0
  1403. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/pyGSTi_icon.png +0 -0
  1404. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1405. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1406. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1407. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1408. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1409. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1410. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_222222_256x240.png +0 -0
  1411. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_2e83ff_256x240.png +0 -0
  1412. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_454545_256x240.png +0 -0
  1413. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_888888_256x240.png +0 -0
  1414. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/images/ui-icons_cd0a0a_256x240.png +0 -0
  1415. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/jquery-3.6.4.min.js +0 -0
  1416. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/jquery-ui.min.js +0 -0
  1417. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/jupyterlibload.js +0 -0
  1418. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/katex.css +0 -0
  1419. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/katex.min.js +0 -0
  1420. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/masonry.pkgd.min.js +0 -0
  1421. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/plotly-latest.min.js +0 -0
  1422. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/pygsti_dataviz.css +0 -0
  1423. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/pygsti_fonts.css +0 -0
  1424. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/pygsti_plotly_ex.js +0 -0
  1425. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/require.min.js +0 -0
  1426. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/offline/smoothness-jquery-ui.css +0 -0
  1427. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/data_comparison.txt +0 -0
  1428. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/gauge_invariant.txt +0 -0
  1429. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/gauge_variant.txt +0 -0
  1430. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/goodness.txt +0 -0
  1431. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/input.txt +0 -0
  1432. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/meta.txt +0 -0
  1433. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/report_notebook/summary.txt +0 -0
  1434. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standalone.html +0 -0
  1435. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standalone.tex +0 -0
  1436. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/main.html +0 -0
  1437. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/AjaxError.html +0 -0
  1438. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/DataComparison.html +0 -0
  1439. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeInvariants_gates.html +0 -0
  1440. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeInvariants_germs.html +0 -0
  1441. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants.html +0 -0
  1442. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants_decomp.html +0 -0
  1443. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants_errgen.html +0 -0
  1444. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/GaugeVariants_raw.html +0 -0
  1445. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness.html +0 -0
  1446. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness_colorboxplot.html +0 -0
  1447. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness_scaling.html +0 -0
  1448. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Goodness_unmodeled.html +0 -0
  1449. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Help.html +0 -0
  1450. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/IdleTomography.html +0 -0
  1451. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Input.html +0 -0
  1452. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Meta.html +0 -0
  1453. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_html_report/tabs/Summary.html +0 -0
  1454. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/templates/standard_pdf_report.tex +0 -0
  1455. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/textblock.py +0 -0
  1456. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/vbplot.py +0 -0
  1457. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/workspacetables.py +0 -0
  1458. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/report/workspacetexts.py +0 -0
  1459. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/serialization/__init__.py +0 -0
  1460. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/serialization/json.py +0 -0
  1461. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/serialization/jsoncodec.py +0 -0
  1462. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/serialization/msgpack.py +0 -0
  1463. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/__init__.py +0 -0
  1464. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/chi2fns.py +0 -0
  1465. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/compilationtools.py +0 -0
  1466. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/dataframetools.py +0 -0
  1467. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/exceptions.py +0 -0
  1468. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/fogitools.py +0 -0
  1469. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/gatetools.py +0 -0
  1470. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/group.py +0 -0
  1471. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/hypothesis.py +0 -0
  1472. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/legacytools.py +0 -0
  1473. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/likelihoodfns.py +0 -0
  1474. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/mpitools.py +0 -0
  1475. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/mptools.py +0 -0
  1476. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/opttools.py +0 -0
  1477. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/profile.py +0 -0
  1478. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/rbtools.py +0 -0
  1479. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/sharedmemtools.py +0 -0
  1480. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/symplectic.py +0 -0
  1481. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pygsti/tools/typeddict.py +0 -0
  1482. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pyproject.toml +0 -0
  1483. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pyproject.toml.no_cython +0 -0
  1484. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/pytest.ini +0 -0
  1485. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/20Replica.ipynb +0 -0
  1486. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/AdvancedFileLoading.ipynb +0 -0
  1487. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/AdvancedReport.ipynb +0 -0
  1488. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/AdvancedReportCreation.ipynb +0 -0
  1489. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/HelloWorld.ipynb +0 -0
  1490. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/Lorem.ipynb +0 -0
  1491. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/advanced_report.py +0 -0
  1492. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/build_tutorial_20.py +0 -0
  1493. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/create.py +0 -0
  1494. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/templates/lorem.md +0 -0
  1495. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/templates/lorem.py +0 -0
  1496. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/templates/nbtext.txt +0 -0
  1497. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/advanced_report/templates/setup.py +0 -0
  1498. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/autoformat.sh +0 -0
  1499. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/cleanup_api_names.py +0 -0
  1500. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/clear_notebook_output.py +0 -0
  1501. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/do-critical-linting.sh +0 -0
  1502. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/do-linting.sh +0 -0
  1503. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/find_missing_docstrings.py +0 -0
  1504. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/create_git_html +0 -0
  1505. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/hooksettings.py +0 -0
  1506. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/post-commit +0 -0
  1507. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/post-merge +0 -0
  1508. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/pre-commit +0 -0
  1509. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/pre-push +0 -0
  1510. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/git/prepare-commit-msg +0 -0
  1511. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/importtestscript.py +0 -0
  1512. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/matplotlib_to_plotly_cmap.py +0 -0
  1513. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/mpi/mpi +0 -0
  1514. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/mpi/parallel_apply.py +0 -0
  1515. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/plantuml_parser.py +0 -0
  1516. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/build_profile.py +0 -0
  1517. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/compare/import.py +0 -0
  1518. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/data/Analyze 2Q data.ipynb +0 -0
  1519. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/1qbasic.py +0 -0
  1520. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/3Q_example.py +0 -0
  1521. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/3q_basic.py +0 -0
  1522. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/basic.py +0 -0
  1523. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/bench_obj_fn.py +0 -0
  1524. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/build_results.py +0 -0
  1525. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/cp.py +0 -0
  1526. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/create_scaling_graph.py +0 -0
  1527. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/load.py +0 -0
  1528. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/mxmul.py +0 -0
  1529. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/set_env.sh +0 -0
  1530. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/gaugeopt/tp.py +0 -0
  1531. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/move_output +0 -0
  1532. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/percents.py +0 -0
  1533. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/pickling.py +0 -0
  1534. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/create_pkl.py +0 -0
  1535. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/gatestring_hashing.py +0 -0
  1536. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/gen.py +0 -0
  1537. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/native_hashing.py +0 -0
  1538. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/pickling.py +0 -0
  1539. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/report_example.py +0 -0
  1540. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/report_full.py +0 -0
  1541. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/profiling/report/reuse.py +0 -0
  1542. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/setup_hooks.sh +0 -0
  1543. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/upgrade2v0.9.7.py +0 -0
  1544. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/scripts/upgrade_stdmodule.py +0 -0
  1545. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/.coveragerc +0 -0
  1546. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/__init__.py +0 -0
  1547. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/checkDocs.py +0 -0
  1548. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/config/pylint_config.json +0 -0
  1549. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/duplicated.py +0 -0
  1550. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/__init__.py +0 -0
  1551. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/automation_tools/__init__.py +0 -0
  1552. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/automation_tools/jsonwrapper.py +0 -0
  1553. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/automation_tools/utilities.py +0 -0
  1554. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/__init__.py +0 -0
  1555. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/findErrors.py +0 -0
  1556. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/findWarnings.py +0 -0
  1557. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/helpers.py +0 -0
  1558. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/lintAll.py +0 -0
  1559. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/lookFor.py +0 -0
  1560. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/cyclic-import.out +0 -0
  1561. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/duplicate-code.out +0 -0
  1562. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/errors.out +0 -0
  1563. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/if.out +0 -0
  1564. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/missingdocs.out +0 -0
  1565. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/out.out +0 -0
  1566. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/rawexcept.out +0 -0
  1567. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/specific.out +0 -0
  1568. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/todos.out +0 -0
  1569. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-arguments.txt +0 -0
  1570. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-boolean-expressions.txt +0 -0
  1571. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-branches.txt +0 -0
  1572. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-instance-attributes.txt +0 -0
  1573. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-locals.txt +0 -0
  1574. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-return-statements.txt +0 -0
  1575. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/too-many-statements.txt +0 -0
  1576. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/unused-import.out +0 -0
  1577. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/unused.out +0 -0
  1578. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/output/warnings.out +0 -0
  1579. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/pylint_messages.txt +0 -0
  1580. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/runAdjustables.py +0 -0
  1581. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/pylint/score.py +0 -0
  1582. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/helpers/scripts/runCoverageTests.sh +0 -0
  1583. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/lint.py +0 -0
  1584. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/.placeholder +0 -0
  1585. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/coverage/.placeholder +0 -0
  1586. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/dup/.placeholder +0 -0
  1587. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_algorithms.html +0 -0
  1588. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_construction.html +0 -0
  1589. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_drivers.html +0 -0
  1590. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_io.html +0 -0
  1591. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_objects.html +0 -0
  1592. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_optimize.html +0 -0
  1593. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_report.html +0 -0
  1594. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/duplicated/duplicated_tools.html +0 -0
  1595. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/output/pylint/.placeholder +0 -0
  1596. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/README.md +0 -0
  1597. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/1.sbatch +0 -0
  1598. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/16-x.sbatch +0 -0
  1599. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/2-x.sbatch +0 -0
  1600. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/32-x.sbatch +0 -0
  1601. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/4-x.sbatch +0 -0
  1602. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/64-x.sbatch +0 -0
  1603. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/8-x.sbatch +0 -0
  1604. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/extract_timings.py +0 -0
  1605. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/reference-8955f5d/2Dspeedup.pdf +0 -0
  1606. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/reference-8955f5d/timings.json +0 -0
  1607. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/run.sh +0 -0
  1608. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/performance/mpi_2D_scaling/sbatch-all.sh +0 -0
  1609. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/runTests.py +0 -0
  1610. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/.coveragerc +0 -0
  1611. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/__init__.py +0 -0
  1612. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/algorithms/__init__.py +0 -0
  1613. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/algorithms/algorithmsTestCase.py +0 -0
  1614. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/algorithms/basecase.py +0 -0
  1615. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/algorithms/test_core.py +0 -0
  1616. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/algorithms/test_fiducialpairreduction.py +0 -0
  1617. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/Fake_Dataset_none.txt +0 -0
  1618. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/Fake_Dataset_round.txt +0 -0
  1619. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/IFPR_fidPairs_dict.pkl +0 -0
  1620. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/analysis.dataset +0 -0
  1621. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/analysis.model +0 -0
  1622. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/analysis_lgst.dataset +0 -0
  1623. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/calcMethods1Q.dataset +0 -0
  1624. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/calcMethods1Q_redmod.dataset +0 -0
  1625. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/create_reference_files.py +0 -0
  1626. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/deprecated.dataset +0 -0
  1627. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/nqubit_1Q_seqs.json +0 -0
  1628. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/nqubit_2Q.dataset +0 -0
  1629. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/nqubit_2Q_seqs.json +0 -0
  1630. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/nqubit_2Qterms.cache +0 -0
  1631. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.dataset +0 -0
  1632. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.dataset.pkl +0 -0
  1633. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.dataset.txt +0 -0
  1634. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.gateset.pkl +0 -0
  1635. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.gateset.txt +0 -0
  1636. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.3.results.pkl +0 -0
  1637. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.dataset +0 -0
  1638. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.dataset.pkl +0 -0
  1639. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.dataset.txt +0 -0
  1640. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.gateset.pkl +0 -0
  1641. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.gateset.txt +0 -0
  1642. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.6.results.pkl +0 -0
  1643. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.dataset +0 -0
  1644. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.dataset.pkl +0 -0
  1645. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.dataset.txt +0 -0
  1646. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.gateset.pkl +0 -0
  1647. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.gateset.txt +0 -0
  1648. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/pygsti0.9.7.results.pkl +0 -0
  1649. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/rb_io_test.txt +0 -0
  1650. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/repLib_dprobs.pkl +0 -0
  1651. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/report_dashboard_template.html +0 -0
  1652. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/reportgen.dataset +0 -0
  1653. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/reportgen2.dataset +0 -0
  1654. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/rpe_test_ds.txt +0 -0
  1655. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/cmp_chk_files/timeseries_data_trunc.txt +0 -0
  1656. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/construction/__init__.py +0 -0
  1657. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/construction/test_gateconstruction.py +0 -0
  1658. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/construction/test_gatesetconstruction.py +0 -0
  1659. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/drivers/__init__.py +0 -0
  1660. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/drivers/demoCalcMethods2Q.py +0 -0
  1661. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/drivers/test_calcmethods1Q.py +0 -0
  1662. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/drivers/test_continuousgates.py +0 -0
  1663. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/drivers/test_nqubit.py +0 -0
  1664. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/extras/__init__.py +0 -0
  1665. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/extras/test_drift.py +0 -0
  1666. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/extras/test_idt.py +0 -0
  1667. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/extras/test_rb.py +0 -0
  1668. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/extras/test_rpe.py +0 -0
  1669. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/extras/test_rpeobjects.py +0 -0
  1670. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/iotest/__init__.py +0 -0
  1671. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/iotest/references.py +0 -0
  1672. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/iotest/test_loaders.py +0 -0
  1673. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/iotest/test_niceserialization.py +0 -0
  1674. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/iotest/test_writers.py +0 -0
  1675. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/mpi/test_mpi.py +0 -0
  1676. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/__init__.py +0 -0
  1677. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_advancedgatesetparameterization.py +0 -0
  1678. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_circuit.py +0 -0
  1679. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_datasets.py +0 -0
  1680. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_labeldicts.py +0 -0
  1681. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_labels.py +0 -0
  1682. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_opfactories.py +0 -0
  1683. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_printermpi.py +0 -0
  1684. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_processorspec.py +0 -0
  1685. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_profiler.py +0 -0
  1686. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_replib.py +0 -0
  1687. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_resultsandestimate.py +0 -0
  1688. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/objects/test_spamvecs.py +0 -0
  1689. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/optimize/__init__.py +0 -0
  1690. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/report/__init__.py +0 -0
  1691. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/report/reportBaseCase.py +0 -0
  1692. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/report/test_report.py +0 -0
  1693. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/reportb/__init__.py +0 -0
  1694. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/reportb/test_colormaps.py +0 -0
  1695. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/reportb/test_notebook.py +0 -0
  1696. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/reportb/test_reportables.py +0 -0
  1697. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/temp_test_files/.placeholder +0 -0
  1698. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/testutils/__init__.py +0 -0
  1699. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/testutils/basecase.py +0 -0
  1700. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/test_packages/tools/__init__.py +0 -0
  1701. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/__init__.py +0 -0
  1702. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/__init__.py +0 -0
  1703. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_compilers.py +0 -0
  1704. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_contract.py +0 -0
  1705. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_core.py +0 -0
  1706. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_fiducialpairreduction.py +0 -0
  1707. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_fiducialselection.py +0 -0
  1708. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_gaugeopt.py +0 -0
  1709. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_germselection.py +0 -0
  1710. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_grammatrix.py +0 -0
  1711. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_grasp.py +0 -0
  1712. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_randomcircuit.py +0 -0
  1713. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/algorithms/test_scoring.py +0 -0
  1714. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/construction/__init__.py +0 -0
  1715. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/construction/test_circuitconstruction.py +0 -0
  1716. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/construction/test_datasetconstruction.py +0 -0
  1717. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/construction/test_gateconstruction.py +0 -0
  1718. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/construction/test_nqnoiseconstruction.py +0 -0
  1719. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/construction/test_stdlists.py +0 -0
  1720. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/drivers/__init__.py +0 -0
  1721. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/drivers/fixtures.py +0 -0
  1722. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/drivers/test_bootstrap.py +0 -0
  1723. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/drivers/test_longsequence.py +0 -0
  1724. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/__init__.py +0 -0
  1725. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/interpygate/__init__.py +0 -0
  1726. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/interpygate/test_construction.py +0 -0
  1727. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rb/__init__.py +0 -0
  1728. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rb/test_analysis.py +0 -0
  1729. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rb/test_group.py +0 -0
  1730. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rb/test_sample.py +0 -0
  1731. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rb/test_theory.py +0 -0
  1732. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rpe/__init__.py +0 -0
  1733. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rpe/test_rpeconfig.py +0 -0
  1734. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rpe/test_rpeconstruction.py +0 -0
  1735. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/extras/rpe/test_rpetools.py +0 -0
  1736. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/io/__init__.py +0 -0
  1737. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/io/test_circuitparser.py +0 -0
  1738. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/io/test_mongo.py +0 -0
  1739. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/io/test_nice_serialization.py +0 -0
  1740. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/io/test_stdinput.py +0 -0
  1741. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/modelmembers/__init__.py +0 -0
  1742. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/modelmembers/test_modelmember.py +0 -0
  1743. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/modelmembers/test_modelmembergraph.py +0 -0
  1744. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/modelpacks/__init__.py +0 -0
  1745. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/modelpacks/test_modelpack.py +0 -0
  1746. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/__init__.py +0 -0
  1747. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/fixtures.py +0 -0
  1748. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/smqfixtures.py +0 -0
  1749. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_basis.py +0 -0
  1750. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_circuitstructure.py +0 -0
  1751. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_composed_spam.py +0 -0
  1752. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_cython_build.py +0 -0
  1753. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_datacomparator.py +0 -0
  1754. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_dataset.py +0 -0
  1755. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_estimate.py +0 -0
  1756. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_explicitmodel.py +0 -0
  1757. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_gaugegroup.py +0 -0
  1758. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_instrument.py +0 -0
  1759. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_label.py +0 -0
  1760. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_labeldicts.py +0 -0
  1761. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_modelfunction.py +0 -0
  1762. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_multidataset.py +0 -0
  1763. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_opcalc.py +0 -0
  1764. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_prefixtable.py +0 -0
  1765. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_processorspec.py +0 -0
  1766. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_protectedarray.py +0 -0
  1767. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_replib.py +0 -0
  1768. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_reportableqty.py +0 -0
  1769. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_results.py +0 -0
  1770. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_smartcache.py +0 -0
  1771. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/objects/test_verbosityprinter.py +0 -0
  1772. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/optimize/__init__.py +0 -0
  1773. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/optimize/test_customcg.py +0 -0
  1774. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/optimize/test_optimize.py +0 -0
  1775. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/protocols/__init__.py +0 -0
  1776. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/protocols/test_dataframe_1.csv +0 -0
  1777. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/protocols/test_dataframe_2.csv +0 -0
  1778. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/protocols/test_vb.py +0 -0
  1779. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/protocols/test_vbdataframe.py +0 -0
  1780. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/report/__init__.py +0 -0
  1781. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/report/test_colormaps.py +0 -0
  1782. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/report/test_formatter.py +0 -0
  1783. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/report/test_table.py +0 -0
  1784. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/report/test_textblock.py +0 -0
  1785. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/__init__.py +0 -0
  1786. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/fixtures.py +0 -0
  1787. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_basistools.py +0 -0
  1788. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_chi2fns.py +0 -0
  1789. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_internalgates.py +0 -0
  1790. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_jamiolkowski.py +0 -0
  1791. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_legacytools.py +0 -0
  1792. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_listtools.py +0 -0
  1793. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_pdftools.py +0 -0
  1794. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_slicetools.py +0 -0
  1795. {pyGSTi-0.9.12.1 → pyGSTi-0.9.13}/test/unit/tools/test_symplectic.py +0 -0
  1796. {pyGSTi-0.9.12.1 → 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
@@ -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