pyGSTi 0.9.12__cp310-cp310-win_amd64.whl → 0.9.13__cp310-cp310-win_amd64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (225) hide show
  1. pyGSTi-0.9.13.dist-info/METADATA +197 -0
  2. {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/RECORD +211 -220
  3. {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/WHEEL +1 -1
  4. pygsti/_version.py +2 -2
  5. pygsti/algorithms/contract.py +1 -1
  6. pygsti/algorithms/core.py +62 -35
  7. pygsti/algorithms/fiducialpairreduction.py +95 -110
  8. pygsti/algorithms/fiducialselection.py +17 -8
  9. pygsti/algorithms/gaugeopt.py +2 -2
  10. pygsti/algorithms/germselection.py +87 -77
  11. pygsti/algorithms/mirroring.py +0 -388
  12. pygsti/algorithms/randomcircuit.py +165 -1333
  13. pygsti/algorithms/rbfit.py +0 -234
  14. pygsti/baseobjs/basis.py +94 -396
  15. pygsti/baseobjs/errorgenbasis.py +0 -132
  16. pygsti/baseobjs/errorgenspace.py +0 -10
  17. pygsti/baseobjs/label.py +52 -168
  18. pygsti/baseobjs/opcalc/fastopcalc.cp310-win_amd64.pyd +0 -0
  19. pygsti/baseobjs/opcalc/fastopcalc.pyx +2 -2
  20. pygsti/baseobjs/polynomial.py +13 -595
  21. pygsti/baseobjs/protectedarray.py +72 -132
  22. pygsti/baseobjs/statespace.py +1 -0
  23. pygsti/circuits/__init__.py +1 -1
  24. pygsti/circuits/circuit.py +753 -504
  25. pygsti/circuits/circuitconstruction.py +0 -4
  26. pygsti/circuits/circuitlist.py +47 -5
  27. pygsti/circuits/circuitparser/__init__.py +8 -8
  28. pygsti/circuits/circuitparser/fastcircuitparser.cp310-win_amd64.pyd +0 -0
  29. pygsti/circuits/circuitstructure.py +3 -3
  30. pygsti/circuits/cloudcircuitconstruction.py +27 -14
  31. pygsti/data/datacomparator.py +4 -9
  32. pygsti/data/dataset.py +51 -46
  33. pygsti/data/hypothesistest.py +0 -7
  34. pygsti/drivers/bootstrap.py +0 -49
  35. pygsti/drivers/longsequence.py +46 -10
  36. pygsti/evotypes/basereps_cython.cp310-win_amd64.pyd +0 -0
  37. pygsti/evotypes/chp/opreps.py +0 -61
  38. pygsti/evotypes/chp/statereps.py +0 -32
  39. pygsti/evotypes/densitymx/effectcreps.cpp +9 -10
  40. pygsti/evotypes/densitymx/effectreps.cp310-win_amd64.pyd +0 -0
  41. pygsti/evotypes/densitymx/effectreps.pyx +1 -1
  42. pygsti/evotypes/densitymx/opreps.cp310-win_amd64.pyd +0 -0
  43. pygsti/evotypes/densitymx/opreps.pyx +2 -2
  44. pygsti/evotypes/densitymx/statereps.cp310-win_amd64.pyd +0 -0
  45. pygsti/evotypes/densitymx/statereps.pyx +1 -1
  46. pygsti/evotypes/densitymx_slow/effectreps.py +7 -23
  47. pygsti/evotypes/densitymx_slow/opreps.py +16 -23
  48. pygsti/evotypes/densitymx_slow/statereps.py +10 -3
  49. pygsti/evotypes/evotype.py +39 -2
  50. pygsti/evotypes/stabilizer/effectreps.cp310-win_amd64.pyd +0 -0
  51. pygsti/evotypes/stabilizer/effectreps.pyx +0 -4
  52. pygsti/evotypes/stabilizer/opreps.cp310-win_amd64.pyd +0 -0
  53. pygsti/evotypes/stabilizer/opreps.pyx +0 -4
  54. pygsti/evotypes/stabilizer/statereps.cp310-win_amd64.pyd +0 -0
  55. pygsti/evotypes/stabilizer/statereps.pyx +1 -5
  56. pygsti/evotypes/stabilizer/termreps.cp310-win_amd64.pyd +0 -0
  57. pygsti/evotypes/stabilizer/termreps.pyx +0 -7
  58. pygsti/evotypes/stabilizer_slow/effectreps.py +0 -22
  59. pygsti/evotypes/stabilizer_slow/opreps.py +0 -4
  60. pygsti/evotypes/stabilizer_slow/statereps.py +0 -4
  61. pygsti/evotypes/statevec/effectreps.cp310-win_amd64.pyd +0 -0
  62. pygsti/evotypes/statevec/effectreps.pyx +1 -1
  63. pygsti/evotypes/statevec/opreps.cp310-win_amd64.pyd +0 -0
  64. pygsti/evotypes/statevec/opreps.pyx +2 -2
  65. pygsti/evotypes/statevec/statereps.cp310-win_amd64.pyd +0 -0
  66. pygsti/evotypes/statevec/statereps.pyx +1 -1
  67. pygsti/evotypes/statevec/termreps.cp310-win_amd64.pyd +0 -0
  68. pygsti/evotypes/statevec/termreps.pyx +0 -7
  69. pygsti/evotypes/statevec_slow/effectreps.py +0 -3
  70. pygsti/evotypes/statevec_slow/opreps.py +0 -5
  71. pygsti/extras/__init__.py +0 -1
  72. pygsti/extras/drift/signal.py +1 -1
  73. pygsti/extras/drift/stabilityanalyzer.py +3 -1
  74. pygsti/extras/interpygate/__init__.py +12 -0
  75. pygsti/extras/interpygate/core.py +0 -36
  76. pygsti/extras/interpygate/process_tomography.py +44 -10
  77. pygsti/extras/rpe/rpeconstruction.py +0 -2
  78. pygsti/forwardsims/__init__.py +1 -0
  79. pygsti/forwardsims/forwardsim.py +50 -93
  80. pygsti/forwardsims/mapforwardsim.py +78 -20
  81. pygsti/forwardsims/mapforwardsim_calc_densitymx.cp310-win_amd64.pyd +0 -0
  82. pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx +65 -66
  83. pygsti/forwardsims/mapforwardsim_calc_generic.py +91 -13
  84. pygsti/forwardsims/matrixforwardsim.py +72 -17
  85. pygsti/forwardsims/termforwardsim.py +9 -111
  86. pygsti/forwardsims/termforwardsim_calc_stabilizer.cp310-win_amd64.pyd +0 -0
  87. pygsti/forwardsims/termforwardsim_calc_statevec.cp310-win_amd64.pyd +0 -0
  88. pygsti/forwardsims/termforwardsim_calc_statevec.pyx +0 -651
  89. pygsti/forwardsims/torchfwdsim.py +265 -0
  90. pygsti/forwardsims/weakforwardsim.py +2 -2
  91. pygsti/io/__init__.py +1 -2
  92. pygsti/io/mongodb.py +0 -2
  93. pygsti/io/stdinput.py +6 -22
  94. pygsti/layouts/copalayout.py +10 -12
  95. pygsti/layouts/distlayout.py +0 -40
  96. pygsti/layouts/maplayout.py +103 -25
  97. pygsti/layouts/matrixlayout.py +99 -60
  98. pygsti/layouts/prefixtable.py +1534 -52
  99. pygsti/layouts/termlayout.py +1 -1
  100. pygsti/modelmembers/instruments/instrument.py +3 -3
  101. pygsti/modelmembers/instruments/tpinstrument.py +2 -2
  102. pygsti/modelmembers/modelmember.py +0 -17
  103. pygsti/modelmembers/operations/__init__.py +3 -4
  104. pygsti/modelmembers/operations/affineshiftop.py +206 -0
  105. pygsti/modelmembers/operations/composederrorgen.py +1 -1
  106. pygsti/modelmembers/operations/composedop.py +1 -24
  107. pygsti/modelmembers/operations/denseop.py +5 -5
  108. pygsti/modelmembers/operations/eigpdenseop.py +2 -2
  109. pygsti/modelmembers/operations/embeddederrorgen.py +1 -1
  110. pygsti/modelmembers/operations/embeddedop.py +0 -1
  111. pygsti/modelmembers/operations/experrorgenop.py +5 -2
  112. pygsti/modelmembers/operations/fullarbitraryop.py +1 -0
  113. pygsti/modelmembers/operations/fullcptpop.py +2 -2
  114. pygsti/modelmembers/operations/fulltpop.py +28 -6
  115. pygsti/modelmembers/operations/fullunitaryop.py +5 -4
  116. pygsti/modelmembers/operations/lindbladcoefficients.py +93 -78
  117. pygsti/modelmembers/operations/lindbladerrorgen.py +268 -441
  118. pygsti/modelmembers/operations/linearop.py +7 -27
  119. pygsti/modelmembers/operations/opfactory.py +1 -1
  120. pygsti/modelmembers/operations/repeatedop.py +1 -24
  121. pygsti/modelmembers/operations/staticstdop.py +1 -1
  122. pygsti/modelmembers/povms/__init__.py +3 -3
  123. pygsti/modelmembers/povms/basepovm.py +7 -36
  124. pygsti/modelmembers/povms/complementeffect.py +4 -9
  125. pygsti/modelmembers/povms/composedeffect.py +0 -320
  126. pygsti/modelmembers/povms/computationaleffect.py +1 -1
  127. pygsti/modelmembers/povms/computationalpovm.py +3 -1
  128. pygsti/modelmembers/povms/effect.py +3 -5
  129. pygsti/modelmembers/povms/marginalizedpovm.py +3 -81
  130. pygsti/modelmembers/povms/tppovm.py +74 -2
  131. pygsti/modelmembers/states/__init__.py +2 -5
  132. pygsti/modelmembers/states/composedstate.py +0 -317
  133. pygsti/modelmembers/states/computationalstate.py +3 -3
  134. pygsti/modelmembers/states/cptpstate.py +4 -4
  135. pygsti/modelmembers/states/densestate.py +10 -8
  136. pygsti/modelmembers/states/fullpurestate.py +0 -24
  137. pygsti/modelmembers/states/purestate.py +1 -1
  138. pygsti/modelmembers/states/state.py +5 -6
  139. pygsti/modelmembers/states/tpstate.py +28 -10
  140. pygsti/modelmembers/term.py +3 -6
  141. pygsti/modelmembers/torchable.py +50 -0
  142. pygsti/modelpacks/_modelpack.py +1 -1
  143. pygsti/modelpacks/smq1Q_ZN.py +3 -1
  144. pygsti/modelpacks/smq2Q_XXYYII.py +2 -1
  145. pygsti/modelpacks/smq2Q_XY.py +3 -3
  146. pygsti/modelpacks/smq2Q_XYI.py +2 -2
  147. pygsti/modelpacks/smq2Q_XYICNOT.py +3 -3
  148. pygsti/modelpacks/smq2Q_XYICPHASE.py +3 -3
  149. pygsti/modelpacks/smq2Q_XYXX.py +1 -1
  150. pygsti/modelpacks/smq2Q_XYZICNOT.py +3 -3
  151. pygsti/modelpacks/smq2Q_XYZZ.py +1 -1
  152. pygsti/modelpacks/stdtarget.py +0 -121
  153. pygsti/models/cloudnoisemodel.py +1 -2
  154. pygsti/models/explicitcalc.py +3 -3
  155. pygsti/models/explicitmodel.py +3 -13
  156. pygsti/models/fogistore.py +5 -3
  157. pygsti/models/localnoisemodel.py +1 -2
  158. pygsti/models/memberdict.py +0 -12
  159. pygsti/models/model.py +801 -68
  160. pygsti/models/modelconstruction.py +4 -4
  161. pygsti/models/modelnoise.py +2 -2
  162. pygsti/models/modelparaminterposer.py +1 -1
  163. pygsti/models/oplessmodel.py +1 -1
  164. pygsti/models/qutrit.py +15 -14
  165. pygsti/objectivefns/objectivefns.py +75 -140
  166. pygsti/objectivefns/wildcardbudget.py +2 -7
  167. pygsti/optimize/__init__.py +1 -0
  168. pygsti/optimize/arraysinterface.py +28 -0
  169. pygsti/optimize/customcg.py +0 -12
  170. pygsti/optimize/customlm.py +129 -323
  171. pygsti/optimize/customsolve.py +2 -2
  172. pygsti/optimize/optimize.py +0 -84
  173. pygsti/optimize/simplerlm.py +841 -0
  174. pygsti/optimize/wildcardopt.py +19 -598
  175. pygsti/protocols/confidenceregionfactory.py +28 -14
  176. pygsti/protocols/estimate.py +31 -14
  177. pygsti/protocols/gst.py +238 -142
  178. pygsti/protocols/modeltest.py +19 -12
  179. pygsti/protocols/protocol.py +9 -37
  180. pygsti/protocols/rb.py +450 -79
  181. pygsti/protocols/treenode.py +8 -2
  182. pygsti/protocols/vb.py +108 -206
  183. pygsti/protocols/vbdataframe.py +1 -1
  184. pygsti/report/factory.py +0 -15
  185. pygsti/report/fogidiagram.py +1 -17
  186. pygsti/report/modelfunction.py +12 -3
  187. pygsti/report/mpl_colormaps.py +1 -1
  188. pygsti/report/plothelpers.py +11 -3
  189. pygsti/report/report.py +16 -0
  190. pygsti/report/reportables.py +41 -37
  191. pygsti/report/templates/offline/pygsti_dashboard.css +6 -0
  192. pygsti/report/templates/offline/pygsti_dashboard.js +12 -0
  193. pygsti/report/workspace.py +2 -14
  194. pygsti/report/workspaceplots.py +328 -505
  195. pygsti/tools/basistools.py +9 -36
  196. pygsti/tools/edesigntools.py +124 -96
  197. pygsti/tools/fastcalc.cp310-win_amd64.pyd +0 -0
  198. pygsti/tools/fastcalc.pyx +35 -81
  199. pygsti/tools/internalgates.py +151 -15
  200. pygsti/tools/jamiolkowski.py +5 -5
  201. pygsti/tools/lindbladtools.py +19 -11
  202. pygsti/tools/listtools.py +0 -114
  203. pygsti/tools/matrixmod2.py +1 -1
  204. pygsti/tools/matrixtools.py +173 -339
  205. pygsti/tools/nameddict.py +1 -1
  206. pygsti/tools/optools.py +154 -88
  207. pygsti/tools/pdftools.py +0 -25
  208. pygsti/tools/rbtheory.py +3 -320
  209. pygsti/tools/slicetools.py +64 -12
  210. pyGSTi-0.9.12.dist-info/METADATA +0 -157
  211. pygsti/algorithms/directx.py +0 -711
  212. pygsti/evotypes/qibo/__init__.py +0 -33
  213. pygsti/evotypes/qibo/effectreps.py +0 -78
  214. pygsti/evotypes/qibo/opreps.py +0 -376
  215. pygsti/evotypes/qibo/povmreps.py +0 -98
  216. pygsti/evotypes/qibo/statereps.py +0 -174
  217. pygsti/extras/rb/__init__.py +0 -13
  218. pygsti/extras/rb/benchmarker.py +0 -957
  219. pygsti/extras/rb/dataset.py +0 -378
  220. pygsti/extras/rb/io.py +0 -814
  221. pygsti/extras/rb/simulate.py +0 -1020
  222. pygsti/io/legacyio.py +0 -385
  223. pygsti/modelmembers/povms/denseeffect.py +0 -142
  224. {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/LICENSE +0 -0
  225. {pyGSTi-0.9.12.dist-info → pyGSTi-0.9.13.dist-info}/top_level.txt +0 -0
@@ -1,160 +1,154 @@
1
1
  pygsti/__init__.py,sha256=NBL56TZ_8z0Es4yesTfrYaFmcXum8ca34fPlClcGo6I,1572
2
- pygsti/_version.py,sha256=poUPHYedi8cZ10xJdZgbG216tVa8-N1Sznr0rrDcAxw,429
2
+ pygsti/_version.py,sha256=iK5PSAYNrqSG30DlWUpBu_iXvjwZb6DZRLAL4Iyzr8M,429
3
3
  pygsti/algorithms/__init__.py,sha256=plTb9pOq-p8Z4j7IdNbD2f3f1HEnL5YFBsVH7TqE5oQ,1198
4
4
  pygsti/algorithms/compilers.py,sha256=OpXVu9xgEtuWcgOHmH4AzBn1Ta3rM3PFpazfBl04bg8,171475
5
- pygsti/algorithms/contract.py,sha256=Z_t4KWm4jCnjCQSH4bWY8-D30J823cKGXt25o-PKX38,19144
6
- pygsti/algorithms/core.py,sha256=I7YUS_qf0Mexid67pcfLUqbsjpl-XoQX8-8-LrOGn4g,57143
7
- pygsti/algorithms/directx.py,sha256=Fj2dSzbyG_FHbS4eN3ibV_pP1fSkkhO7-HOlU8zAPos,31563
8
- pygsti/algorithms/fiducialpairreduction.py,sha256=CWGgpkvhLZx46LkxEeKisTFiP50F-YsAvqjz8czsx40,117397
9
- pygsti/algorithms/fiducialselection.py,sha256=j0RvJaYtjvse8GD33YuAuHk5JG4KBiYonVWjf0RrobU,97811
10
- pygsti/algorithms/gaugeopt.py,sha256=FoFaESz7GDuNVdNKwqN3eX5ytl9QFuXXS7tRSVqapns,45599
11
- pygsti/algorithms/germselection.py,sha256=kVRDOi_mqH8AiEhElZFC9zcpTaupjShlB7LnEOzrZCw,239273
5
+ pygsti/algorithms/contract.py,sha256=OMBrQ2hL3rdlQF9U8MacTxUWNQXXHJBlTcNcKJiVgX0,19141
6
+ pygsti/algorithms/core.py,sha256=lgZSmMBKNfWtp0acwWHgb_Th7d3E6dQsg8uXCFK4YuA,58876
7
+ pygsti/algorithms/fiducialpairreduction.py,sha256=H3jo1Gg0wQsltfomG_kKA-jlT2hkG7rCkuOdHa7OmZk,117459
8
+ pygsti/algorithms/fiducialselection.py,sha256=4qPD8Zp3lmtemp_DwBuL35MbbbKqVINVPaeibd1mcVo,98252
9
+ pygsti/algorithms/gaugeopt.py,sha256=Qbh-VPUO4JJqiyDfWm8jXnJkR0oTqBjfCkm75Luq4j0,45600
10
+ pygsti/algorithms/germselection.py,sha256=kUg43ww7-x8El0JbmKWvKlat36RjCitKBkwiFURxn70,239356
12
11
  pygsti/algorithms/grammatrix.py,sha256=vFZs40oAVfpPKXr5x27sEkxivUbjzhIVgfmJilhHeX0,4063
13
12
  pygsti/algorithms/grasp.py,sha256=VomyDJYUx3T-5NxlhFD5Laz_ASbKOv-GKuaHOlX-r_I,19544
14
- pygsti/algorithms/mirroring.py,sha256=MdwHeIaaympBwuI-a4J62vHop9XDPjf-hpa4oIvVjnE,34066
15
- pygsti/algorithms/randomcircuit.py,sha256=ILFb5xlykOxiJ_2CmgZnGUOb50t_wgBKtnA4TFDZLic,188361
16
- pygsti/algorithms/rbfit.py,sha256=kyt965FnxNi13n7ER2DbhsHXZ5HeKaIcCc-gvwKYrQc,22232
13
+ pygsti/algorithms/mirroring.py,sha256=XmTMcDSHvtTik5Kn6XfDcARsa3Vqz834XDgpH_r1QXA,12395
14
+ pygsti/algorithms/randomcircuit.py,sha256=dssCiKBCWfdZRgOR0IsYLLmHPiXEJKouVo2-Nt5M0x8,121115
15
+ pygsti/algorithms/rbfit.py,sha256=eYsXm8LgA_1RdRq-dBJhUF-kcYdLWBQjh46C9hOOLG0,12642
17
16
  pygsti/algorithms/robust_phase_estimation.py,sha256=bRKD8HeleClirNB8kgNC-Y2yMO8g1SjFHjgvEgeL-8M,3644
18
17
  pygsti/algorithms/scoring.py,sha256=9lidQ_iIyPGPRqPquz2FDmxYt1JhBfYyQHdzLx6pgsg,6159
19
18
  pygsti/baseobjs/__init__.py,sha256=Tds--bTC03pKWJsAe9s6WyVor5FYCjqx7aAgncUiibU,1506
20
19
  pygsti/baseobjs/_compatibility.py,sha256=DZSfIQXX0YL7HnN8etJ_pBHWNgILIvprCJG2Kjpb8Is,2297
21
20
  pygsti/baseobjs/advancedoptions.py,sha256=s_pcQZeTSHOHLhvKDq1ApCThby3cl3YF4ij1MhPZfqY,3608
22
- pygsti/baseobjs/basis.py,sha256=X7KZPse_lzlsQ0Cs08hWLPDJIq8pMIg49aFBM3MdZr8,86923
21
+ pygsti/baseobjs/basis.py,sha256=PwvuCWfTnZa72Hjrmi5fb-d9qCHDnlCJgHL3pUHhtko,73829
23
22
  pygsti/baseobjs/basisconstructors.py,sha256=p6H6-PWdPjc_s7qSyhzXtL7TUvmZ62XVx-GRgJkMosg,42493
24
- pygsti/baseobjs/errorgenbasis.py,sha256=1DzwXrPIdnyxMjPCfwa3FMzQzSeTvECUjlrX80-jS20,36166
23
+ pygsti/baseobjs/errorgenbasis.py,sha256=niYshtYQq6Xajlvu1gYF9eLynG0xEu3Aj5wNm6stfOM,28855
25
24
  pygsti/baseobjs/errorgenlabel.py,sha256=-Got385hDUaLSuNOBDzT35qmQ7UG1Kyu-JyvEnvgj1s,11560
26
- pygsti/baseobjs/errorgenspace.py,sha256=V-84-njcYGb6XZa2BqWxwrGTafQvN_TSTr4sUsNhSwg,5311
25
+ pygsti/baseobjs/errorgenspace.py,sha256=YLwGs1bFopUkQdrrpU-12XufsgCQh9h5hue97gZMsPw,4936
27
26
  pygsti/baseobjs/exceptions.py,sha256=S3Fa9wuXFcFYiFmrRUYwavaezB7aZjnoccvKnpcUo5M,969
28
- pygsti/baseobjs/label.py,sha256=lEd3RwOrrl8HezJ54OoRL3ZCeonGAHQU8qez8IJBYiA,78519
27
+ pygsti/baseobjs/label.py,sha256=r1QLIGXJSL-YC2aEMF_CGLavdt8A0p4HBT_fnAdfv_Y,74816
29
28
  pygsti/baseobjs/mongoserializable.py,sha256=_HKrTAr5rUoPq2PvoEHttpH1U12rmue_B3MDmKUB8H8,35363
30
29
  pygsti/baseobjs/nicelyserializable.py,sha256=62ktzXIGo4j5m-g9ZAec1xTMod0xXYemAZMNTK_bI3c,16513
31
30
  pygsti/baseobjs/outcomelabeldict.py,sha256=dCGi68wzKLXWlo_92oGqpgv3xh4zPavRB9gmpTNhhtw,5417
32
- pygsti/baseobjs/polynomial.py,sha256=hSsBO2bYWj9eL__DtZ0WVbFCTKXAFbAYWWGDs_XzwqI,43289
31
+ pygsti/baseobjs/polynomial.py,sha256=YXghTdwF2-uSR5xPr17d7hnU1GRV6j1ckFCk0i6bVms,21287
33
32
  pygsti/baseobjs/profiler.py,sha256=-xhLe-2L03gxaBGwChXndqHrgprsiCcf1mBtPzEpWD8,17760
34
- pygsti/baseobjs/protectedarray.py,sha256=6k68s2nTlF66NHEsiURTSgLLf7DGsTYnLWsFq-DE8bA,10011
33
+ pygsti/baseobjs/protectedarray.py,sha256=IjRfYkjwhLovDen9lX3MyAQsrm5LD9kdtK9UqtAA4po,8179
35
34
  pygsti/baseobjs/qubitgraph.py,sha256=zX82n-cRGol0LwfahUC0gSSXb7igNDMXWYVshlW0xYA,40162
36
35
  pygsti/baseobjs/resourceallocation.py,sha256=rawG4N8Vl-8IezoEoHT2wXHmdQ5kykr7Zno8jTCmAsg,36336
37
36
  pygsti/baseobjs/smartcache.py,sha256=JudE_8toom5T0Mc280PwQPTtQMlRrmiiYJ81n5dJeJU,21612
38
- pygsti/baseobjs/statespace.py,sha256=w5K6foWVw3bgRHFZJkZj-CniUOQ-jUB_8f5e8lbzNa0,45185
37
+ pygsti/baseobjs/statespace.py,sha256=0EwlwqXxgfMboPPL3spuMGkcJ2Oet8-BC3ThUcfNGR0,45187
39
38
  pygsti/baseobjs/unitarygatefunction.py,sha256=O2llxobsJAK5rTciO5JQZy-HAxhwjfcQ7Luj3__O4TA,1858
40
39
  pygsti/baseobjs/verbosityprinter.py,sha256=AwhNmeiUdcml481LjHt11Ls1G7xZljWTQBvf0rsbctg,26762
41
40
  pygsti/baseobjs/opcalc/__init__.py,sha256=3VP8OujnQaeCVjz_eXvg428MZ3M5FdHmry1qrePqqB0,3449
42
- pygsti/baseobjs/opcalc/fastopcalc.cp310-win_amd64.pyd,sha256=s_7cwKUiedN0S9ikO0YmpNTQ6DsfaiqsWInaKmpLlK8,189952
43
- pygsti/baseobjs/opcalc/fastopcalc.pyx,sha256=TWGuohMwo9lOgwW9XDCQG7qtgs9_b6yBaiZucAzj7oM,48554
41
+ pygsti/baseobjs/opcalc/fastopcalc.cp310-win_amd64.pyd,sha256=Fq1aH0uWuBhsOmu9D_hxKaEpECiLReWfaPYSZp2HExk,193024
42
+ pygsti/baseobjs/opcalc/fastopcalc.pyx,sha256=btbIHf7_mPES1jhDMf5_BHgRDHTc0hbrjIOxaLpbO6U,48548
44
43
  pygsti/baseobjs/opcalc/slowopcalc.py,sha256=l4kk59q7yjL2iLkrRLQK7kvmRjWmGI88cpnlkpnTVj0,12795
45
- pygsti/circuits/__init__.py,sha256=whSKRwwBn7wCl4j2yYe4mt9SB6140gOgza5ytU21Mew,1098
46
- pygsti/circuits/circuit.py,sha256=HmiXtTrZpQigSbcmZVQzvCacs9AHdMHXNXk0odtcSpQ,201099
47
- pygsti/circuits/circuitconstruction.py,sha256=-NQDmHiYuOsptV07MXfpQ9lpYVN5NPB2rha4GB5Gxh0,32690
48
- pygsti/circuits/circuitlist.py,sha256=kWAODl9ZoPeqquuQzO7tvIBSh_EXUc2AoZ05gcHS4oM,8891
49
- pygsti/circuits/circuitstructure.py,sha256=06cOEbMNDg9n-AFoI2QlOtJBUWf509TNJEUudDSOJ60,43351
50
- pygsti/circuits/cloudcircuitconstruction.py,sha256=_-2QnYUatRLx_RTnEV9pksT6rAOqrURE7jYS-OWCGjM,136186
44
+ pygsti/circuits/__init__.py,sha256=6HKfKzOljBWE0PzkLw5jjwkdwKa3wzUU83KckBUVnh4,1119
45
+ pygsti/circuits/circuit.py,sha256=aJ-I4aSgDJbEuMmfFiJShW08L43fevkmIYKzt_4MLfU,214800
46
+ pygsti/circuits/circuitconstruction.py,sha256=SXsTOf7BvtLkyYKTmHEwFnmF_19LUur8ysJ4rzQgzaQ,32585
47
+ pygsti/circuits/circuitlist.py,sha256=C5xsbkznWFbTMNd9CfF843YhcfKosg3qAUFPjxmYDs4,10710
48
+ pygsti/circuits/circuitstructure.py,sha256=kDwvSwkoQIg2IFgpVsl4jy9kq2vqzaRMuckoT_pnihk,43357
49
+ pygsti/circuits/cloudcircuitconstruction.py,sha256=2lIUzGRr8Ar0jrnysuFyRYj7vUd1lVe2EmTwxnkRF90,136604
51
50
  pygsti/circuits/gstcircuits.py,sha256=vM_GngsKLU1QvrbPODdqH-cb5Jihq2lVWrOiGkMAoTY,46800
52
51
  pygsti/circuits/rpecircuits.py,sha256=lOnN-erlXIiOExQASGDJEUYkKSQRw-u425ZU4IZwVGQ,8243
53
- pygsti/circuits/circuitparser/__init__.py,sha256=UjcRAQ62xgYEHd_xeQZ1b9LEd4UcSKvSzw_LuFb_CHU,14149
54
- pygsti/circuits/circuitparser/fastcircuitparser.cp310-win_amd64.pyd,sha256=K5Tadx7sUTzobWBI_kOKg0FP4TmRSvpmKZ8qqdlyNC4,92160
52
+ pygsti/circuits/circuitparser/__init__.py,sha256=i4RsIxLva-mVGdKv0mwjiwiwkYcRgihsA3Uyd3nMjLE,14157
53
+ pygsti/circuits/circuitparser/fastcircuitparser.cp310-win_amd64.pyd,sha256=gL1A0RgTX8OJCXW188sm5MvtB4tnFxAkfXXkzP74o8I,92672
55
54
  pygsti/circuits/circuitparser/fastcircuitparser.pyx,sha256=gefKlsJbq5u3s7gLQNLmIHuemSb-dDRkU_KGhDYdY-0,12851
56
55
  pygsti/circuits/circuitparser/slowcircuitparser.py,sha256=ASTy7sUQ9NcMcqvYuz5uvvwWPWjvLxPl7gzx8ka72DQ,10125
57
56
  pygsti/data/__init__.py,sha256=8KdLWo5dBBr4-s81FeeyR6xb6Zcsv-x9keVDmAAz2lA,1053
58
- pygsti/data/datacomparator.py,sha256=7MuGKtdkrBwzj7UGw3P5INHutQXx5Sw9ETSsWNdcb0c,45209
59
- pygsti/data/dataset.py,sha256=1orgJvVfXudQLNlgN9Mmy6SQNJQc6FrzFK0FSJ4YOhI,135981
57
+ pygsti/data/datacomparator.py,sha256=JmuCZwa_Fp5A1zZqqjarxyVwM1KvrsjcBx0JMq7Sfy8,44984
58
+ pygsti/data/dataset.py,sha256=AZD7_FK_uGe6hMWXzq9Qr4bCR0j-fsAkihQiBpj_G4w,136364
60
59
  pygsti/data/datasetconstruction.py,sha256=EJOV8Liz2lC1jjVaBoOlGeAaDhjAMDDkaTtRkglI1Nc,25965
61
60
  pygsti/data/freedataset.py,sha256=3eStOcsXP4PTFmIc1J7q5x1qch-VWubCKrCGKOhDfXY,7055
62
- pygsti/data/hypothesistest.py,sha256=kkH1I-2kmYxG4XcEL0_i37mqnGp6qdZPLY3WwNKuga8,25598
61
+ pygsti/data/hypothesistest.py,sha256=wAl4L7gZaf5yJGfMzv7AShcHOCT3oTAXFlq-l4YvCA4,25435
63
62
  pygsti/data/multidataset.py,sha256=1KBbQFt2JdaxXMQbhLJHGHhYJcANknbBzgrr9p9aKiU,36219
64
63
  pygsti/data/rpedata.py,sha256=z5RxDMXD7oqb_pqKan8b_P8ucWIvUZPpxDrv7hN7Q1Y,3647
65
64
  pygsti/drivers/__init__.py,sha256=N8NU4nimFKl421ZR423eIrcZvqtTFl4cfXO4bu1Z2gs,902
66
- pygsti/drivers/bootstrap.py,sha256=DgTiPfEXt7UJJBpObNZNw5COmAIzL6SVy-crtMXRsWY,21341
67
- pygsti/drivers/longsequence.py,sha256=qs8e7saazcIooj1XD4L1voaq-mR10pMf3Z-0zap5bb8,49562
65
+ pygsti/drivers/bootstrap.py,sha256=D3HI-O4Lpck6_9rsSz9Bjif_-hKC9nZGZdPFNYi2zDE,19180
66
+ pygsti/drivers/longsequence.py,sha256=ndfllWjEoUfkqAkfz5De5e1HtySvWETxaCAHUhECpuI,51182
68
67
  pygsti/evotypes/__init__.py,sha256=pZQc-Rj27JmXwIMmpOVNg3KIrbD7lfy_akbNJOf6lrA,781
69
68
  pygsti/evotypes/basecreps.cpp,sha256=722DaDCTXZkmmtmySya6XasycRWpMZOsE_eNQSuGW_g,6899
70
69
  pygsti/evotypes/basecreps.h,sha256=Tnmy26I7PbQGlryhk1PCOsrO0H_KKhfwSZIsteNWPio,2914
71
70
  pygsti/evotypes/basereps.py,sha256=jPZgUtyYwb77aIkhWRc1aOUND8yLfB6_uwoNzgqjaq0,16404
72
- pygsti/evotypes/basereps_cython.cp310-win_amd64.pyd,sha256=rlO2MKlDexpW48nB-3PYe8PlzOlyKczc8HEFJwUcHTM,163328
71
+ pygsti/evotypes/basereps_cython.cp310-win_amd64.pyd,sha256=Kfrp1441QQt0Fkd8TqIjmM2Oyj-m8JbkpkogfOnqYc0,162304
73
72
  pygsti/evotypes/basereps_cython.pxd,sha256=i2BFxXT17eZT6q6DFhA9fHpXY6f2F_P1LkxZEPiVuqM,2255
74
73
  pygsti/evotypes/basereps_cython.pyx,sha256=eb7_idUYgbU753R5NxM69cS6hCCM7eOjn0SWSP27zV4,13446
75
- pygsti/evotypes/evotype.py,sha256=CiayFOfGX4IgmOp4bbnnc7QVF3iQ6fQKkJLlRzNNicQ,10044
74
+ pygsti/evotypes/evotype.py,sha256=6Q6vrYJckRUwKRW3kLsjCrkD4MwhD8vixXTIYnGde70,11875
76
75
  pygsti/evotypes/chp/__init__.py,sha256=_rGmtXzMs4yFmGtS-le3uNV-88gLAxh5W-YKwNvdVJg,1126
77
76
  pygsti/evotypes/chp/effectreps.py,sha256=E6bbp-5fZWJPdcIhdBIBWOIKh4BSK3zOZwrO6ehuFeY,1398
78
- pygsti/evotypes/chp/opreps.py,sha256=99iQJhYhyaNjXMS9gflOTt3wjSzKQy1-9rweEtqK9pY,12562
77
+ pygsti/evotypes/chp/opreps.py,sha256=h-kW0mLL-ZhuvDkg98TH6CCy8z2WkQNe9A1pFFUmRfE,9734
79
78
  pygsti/evotypes/chp/povmreps.py,sha256=-IZ4hBQ087Z0Z1h4HZJ06h56YVgTeDqvXQr7CkBCaRg,5140
80
- pygsti/evotypes/chp/statereps.py,sha256=TeKOjWZaVS7-e92WGtB9dVWnr1RreYrkHEzYND_MvaE,4647
79
+ pygsti/evotypes/chp/statereps.py,sha256=N0CWKlISAUYYsp5YZubeLUrMUe3mgMlIIcB2WLoF1go,3353
81
80
  pygsti/evotypes/densitymx/__init__.py,sha256=L5qTHOllHPaFcRYhJnLb25bY6pL059PXbJKUHYznhKI,894
82
- pygsti/evotypes/densitymx/effectcreps.cpp,sha256=Ne-rFQVPA4V295T_G8IQur7x3-7J92m3iyQaOLtXI7Y,6716
81
+ pygsti/evotypes/densitymx/effectcreps.cpp,sha256=hRgbtCbnFwzDJMcLbWDji05QG_4SELBUIxfeWIfe0qc,6549
83
82
  pygsti/evotypes/densitymx/effectcreps.h,sha256=zeybuynZBzFguPj96JzdUxyCQ8wd1IKZkZ_EFDr4-IY,1894
84
- pygsti/evotypes/densitymx/effectreps.cp310-win_amd64.pyd,sha256=luEVK4s5PH2h9_v_frZjU-BDxWNCV2UMjTRrfgay4k0,137728
83
+ pygsti/evotypes/densitymx/effectreps.cp310-win_amd64.pyd,sha256=dmvhe40VyvcdZHGXerjkKgtiING44VIIIMFSx3_Cjsc,137216
85
84
  pygsti/evotypes/densitymx/effectreps.pxd,sha256=OFIRErWtcPMjgwdToH0qtVeWvznqXKCvuKmPMHd4iwA,3458
86
- pygsti/evotypes/densitymx/effectreps.pyx,sha256=WGhm9mDq0-ypr75S13Na_S9Jkf-hCtmnYzt_o904kQo,8068
85
+ pygsti/evotypes/densitymx/effectreps.pyx,sha256=yuHE3s4HvPPs9O3Nf3mda4S1Kyea-4Qqxx8-26IWSKc,8065
87
86
  pygsti/evotypes/densitymx/opcreps.cpp,sha256=eBG8vmHc3PGOFIj5IlBtFlmeoS5jJrMQ7is4E-5O-qg,24306
88
87
  pygsti/evotypes/densitymx/opcreps.h,sha256=cAOSIzONdh7JWQNG2j4dv2bt-xvfnUBmLlvvh9ENd58,4056
89
- pygsti/evotypes/densitymx/opreps.cp310-win_amd64.pyd,sha256=tl16d9WtkAKjbGikxXOrYIU8dzuUsmRl7F_EXRMHKsQ,290816
88
+ pygsti/evotypes/densitymx/opreps.cp310-win_amd64.pyd,sha256=11E3tCgMeB61iT-944DGdpMH3lnj3t3zZQJxKBaf_l0,292864
90
89
  pygsti/evotypes/densitymx/opreps.pxd,sha256=PqjmzH4iWKERc9VBTR547AhS1WZvAmU2ux4Xv8jH6eM,3568
91
- pygsti/evotypes/densitymx/opreps.pyx,sha256=6ivEE6BK7daICVlUMvjgWmW2eu_0nhe-Glqazke_Dqc,34458
90
+ pygsti/evotypes/densitymx/opreps.pyx,sha256=dXaZSHww3wyPCYY7NYun-5tvO-F7YF3AUYcS7XZ8ptw,34452
92
91
  pygsti/evotypes/densitymx/statecreps.cpp,sha256=-k2uQFdp6orsBYlzf3yCD2vpVO8NNn1ifN-Jm8b5EuE,1574
93
92
  pygsti/evotypes/densitymx/statecreps.h,sha256=2FYM2nx7Ug_YTaGJfQb0Y4k3Cs0VDQUV939p7zEdJ-U,462
94
- pygsti/evotypes/densitymx/statereps.cp310-win_amd64.pyd,sha256=Vlk3Er79MlA-eyKSzUP5nwuWrLUPFZZzyuUaf6r4S-8,129024
93
+ pygsti/evotypes/densitymx/statereps.cp310-win_amd64.pyd,sha256=F47BV4nKQZ_XzN0yOSIh2oUJKu3tqv7bqdKOLd26gFU,130048
95
94
  pygsti/evotypes/densitymx/statereps.pxd,sha256=GmbpQdOIU3TdCAwsmeXKM8GgW_BMohLhoe3Ro5bIjRQ,1424
96
- pygsti/evotypes/densitymx/statereps.pyx,sha256=ePQ7FxFNjgiNVCAzB68Ko3I8J-nVinT5-IoinK9QOxg,6961
95
+ pygsti/evotypes/densitymx/statereps.pyx,sha256=upXb1sa6ht5-Kt5T-As-zx6rrQIIyFOQb5ENhCAz4Es,6958
97
96
  pygsti/evotypes/densitymx_slow/__init__.py,sha256=lHUoW8LcU7QZNch1f-WqyZGVn-TFQNvoe6MWaNeij8w,878
98
- pygsti/evotypes/densitymx_slow/effectreps.py,sha256=ec1nbJCX6ZNQFjVmR1FkQxewArRFKe58auZub3KOYAQ,8438
99
- pygsti/evotypes/densitymx_slow/opreps.py,sha256=8_G8JOoDlrHtpoMvJZkLaxXLby4UpPjNYUg6Oc6YWMc,22462
100
- pygsti/evotypes/densitymx_slow/statereps.py,sha256=KgBO82nQfuFJM9fiRc9ATYEaqQe6i5h_-BZ4BktoYqc,6415
101
- pygsti/evotypes/qibo/__init__.py,sha256=x3dT-6Y4kPl-AFI9ojKaQU8aiH4laoZAy8IXOwZmySY,1092
102
- pygsti/evotypes/qibo/effectreps.py,sha256=Od65b14JJIlOXqDF95ZmnVUH8k0J3zZxLA39hs52re0,3146
103
- pygsti/evotypes/qibo/opreps.py,sha256=zzN9Qn15a49m9y3A-Ri97g_F6yPIHMaDYvXekwAd2k8,16611
104
- pygsti/evotypes/qibo/povmreps.py,sha256=mGYotzcpTparVA9AQcgbXkjPrFrUSMVSJoQxcmPDk6k,4216
105
- pygsti/evotypes/qibo/statereps.py,sha256=ot-tBkz5u4izJYryxdI836OHqWfiXuXecZNnlDpN1VA,7601
97
+ pygsti/evotypes/densitymx_slow/effectreps.py,sha256=quVxO7s35SQzm0MCTsGvL5udRbPM-UtMlZE2BehYPHw,7484
98
+ pygsti/evotypes/densitymx_slow/opreps.py,sha256=MzVOBvnfOTF8i7MReHesEmwELv9uYXLy8Ozhxsp2Tls,21846
99
+ pygsti/evotypes/densitymx_slow/statereps.py,sha256=X03dwZ326Ic4f18OxBcFPdlOrOWaoCmRxb5oFQvdQPw,6656
106
100
  pygsti/evotypes/stabilizer/__init__.py,sha256=RGGxvj5DqYC8-SyyJbZWr6xOHTNfSBgIqLEE0x5bleY,917
107
101
  pygsti/evotypes/stabilizer/effectcreps.cpp,sha256=ZRGyTMtDPhFMtisr15_uzxexLPlvPhptri3JrPBa18U,3177
108
102
  pygsti/evotypes/stabilizer/effectcreps.h,sha256=GDuKb2OieS2ADPw0mE9aCnKuaOK2ZhMx2MFwhN-VU7I,1139
109
- pygsti/evotypes/stabilizer/effectreps.cp310-win_amd64.pyd,sha256=4Ytj00jVvbFSCV-BkXHuAM30C_X_xo7T1vE0jEjfxO8,93184
103
+ pygsti/evotypes/stabilizer/effectreps.cp310-win_amd64.pyd,sha256=vuVKuPZY0gsGltoZKlkelwvLuTt6S0yUIAcsO41Xu_g,93184
110
104
  pygsti/evotypes/stabilizer/effectreps.pxd,sha256=TT_RvaYfszipx-54xFnAHIyzXMs-W7_sd4OtJ-i1McA,2523
111
- pygsti/evotypes/stabilizer/effectreps.pyx,sha256=pvUkCQIxr_BxwoOtIb_hANg9XuIm7eTBwbgqTtbkxzk,3496
105
+ pygsti/evotypes/stabilizer/effectreps.pyx,sha256=z7d4g35flGc4_jS7frhW7dlhpZjpMUdcrZ-PWnowqJ0,3378
112
106
  pygsti/evotypes/stabilizer/opcreps.cpp,sha256=Hx9lSX-3FIo3qhIrOIqsVC8ylEcXiJz0KPxTE4KxAx8,10161
113
107
  pygsti/evotypes/stabilizer/opcreps.h,sha256=fF3GZIurRQS9ZX8LbT4i8XcH49T3Q9Q2YcQSuXahobw,2551
114
- pygsti/evotypes/stabilizer/opreps.cp310-win_amd64.pyd,sha256=0Cq0pDON1Pr5SQLLl512wkVhWDJH5sg8-irt89-Tzgo,180224
108
+ pygsti/evotypes/stabilizer/opreps.cp310-win_amd64.pyd,sha256=llydc_IuXse364wLRKlcjB6cQmVTcrBrqm2FmvyXbhU,183296
115
109
  pygsti/evotypes/stabilizer/opreps.pxd,sha256=u4BYoSipJN88sMHsGZsnz-TeB9lhpJI_rxZDqn8HKwM,2990
116
- pygsti/evotypes/stabilizer/opreps.pyx,sha256=mzWY93lWp2o6usxCA-5b1GItziILGGkHBfts7V5schU,11694
110
+ pygsti/evotypes/stabilizer/opreps.pyx,sha256=EVVaw7C7xgW6-57ADyag_NegNOfp399SUtq054o9h7c,11580
117
111
  pygsti/evotypes/stabilizer/statecreps.cpp,sha256=Q5sqfYoUdFxTrcOFhtYxFsBsdT-HCibeMwN4oeV8XlA,28723
118
112
  pygsti/evotypes/stabilizer/statecreps.h,sha256=rA_I4fnsJSTXkhpAdcVF6_lwcB_rXOIEm539KgkqBcA,1785
119
- pygsti/evotypes/stabilizer/statereps.cp310-win_amd64.pyd,sha256=AKWuvH2UFA1HQmt2fXhHgUyfthfeYuGKewVEjZyvEv4,119296
113
+ pygsti/evotypes/stabilizer/statereps.cp310-win_amd64.pyd,sha256=gVnqViO0nKUprvq4aMBZYKshd2TTWYWtGPQZdwVOoZE,117760
120
114
  pygsti/evotypes/stabilizer/statereps.pxd,sha256=EPGlisrwitCF3zp0gZO55gi7JBTe7kRPFsYdZ1stg-w,1549
121
- pygsti/evotypes/stabilizer/statereps.pyx,sha256=PDAHao5I3puzbOdhFe6IEVaM-x9GXSrRu4PHUX9H45k,6864
115
+ pygsti/evotypes/stabilizer/statereps.pyx,sha256=w1dYVwYoo0py2uxkYs3biU5mViTh6JoGmvIbV4f5e8Y,6745
122
116
  pygsti/evotypes/stabilizer/termcreps.cpp,sha256=sjzcbu9v0SsPiDmWonOJm-MMkYY8iKMM3JtVC8LtlRQ,1933
123
117
  pygsti/evotypes/stabilizer/termcreps.h,sha256=CxC60LMjtK1TXxrS9QrcjBJ0dsIZUp53xSw4a-rl_GI,1053
124
- pygsti/evotypes/stabilizer/termreps.cp310-win_amd64.pyd,sha256=ozbKq5U7qQRgZXW3Fs491xx6qNTXCczptbGcMaqe-ss,85504
118
+ pygsti/evotypes/stabilizer/termreps.cp310-win_amd64.pyd,sha256=MtA7pDZV4nE-x0kc7d7jI3rT8YWcsbZM7zMYxkDjFn0,86016
125
119
  pygsti/evotypes/stabilizer/termreps.pxd,sha256=NiODvWBXT1uCmyk0YHbaqzY8DHR8d1bJ5rmvE3Fcopw,3035
126
- pygsti/evotypes/stabilizer/termreps.pyx,sha256=ZgVn-VIbWmN66yjVMEiHQFNl4mrf9wFqlSVNHeKNbZM,5292
120
+ pygsti/evotypes/stabilizer/termreps.pyx,sha256=REZrYa16PSz-cXPoSMiuoA6zq68vBROdKaC3u98z4kQ,4903
127
121
  pygsti/evotypes/stabilizer_slow/__init__.py,sha256=oyVi7Z4dBvMVzLPa2DifNw1kBFWq_hLHg9hnHsgL6vU,873
128
- pygsti/evotypes/stabilizer_slow/effectreps.py,sha256=7eh7dZyBuqokuQVITRaJD66kgP9Z46U77ge_pMOs4jU,3445
129
- pygsti/evotypes/stabilizer_slow/opreps.py,sha256=g4zYKV6cSJ9bNgiT7eKuTSzeJii7f6tyruxq4Pb2c_0,8809
122
+ pygsti/evotypes/stabilizer_slow/effectreps.py,sha256=iVJnEb9HROkKdBSYjVcq6Q7vp0rEOyKkbxWrlObNJVo,2865
123
+ pygsti/evotypes/stabilizer_slow/opreps.py,sha256=YgnJGAYkhvtiGzIsEfAv710EOIMCPlAozIeLOJ6FKog,8695
130
124
  pygsti/evotypes/stabilizer_slow/stabilizer.py,sha256=2OUE4xAI7cC_V1LNwEIki9S9ukN6n4-rTwOcB5_y7iE,40273
131
- pygsti/evotypes/stabilizer_slow/statereps.py,sha256=u2dV6jwTLpBmQwin6S8-pvHw9Z0NIS5mWlEsvExfE0Q,5015
125
+ pygsti/evotypes/stabilizer_slow/statereps.py,sha256=eeGydCbAOIoE9i0gUgiFvLhhl7wXvdEPAwSKcfcpAAQ,4903
132
126
  pygsti/evotypes/statevec/__init__.py,sha256=sA__mHNHdLBvFx3-jDaT3gxkw_eaMMtLFuRfYCfbv9A,911
133
127
  pygsti/evotypes/statevec/effectcreps.cpp,sha256=RKWFr4e2uceJml8NNVizOvXh1Wcn-t2uOGWqnGRrVOs,6365
134
128
  pygsti/evotypes/statevec/effectcreps.h,sha256=kNAqshGtatu8eifaXsdujyD07dfxbGxG0yxZPN52IxQ,1848
135
- pygsti/evotypes/statevec/effectreps.cp310-win_amd64.pyd,sha256=U0_gERbqwzwQJjuU4ji4E_kA5smHJ0-A0w0UGxa_o7Q,139776
129
+ pygsti/evotypes/statevec/effectreps.cp310-win_amd64.pyd,sha256=JHM2mxVK40jvOP8kTE2QnSfY2rHllPSXSKSuQSWsnoM,139776
136
130
  pygsti/evotypes/statevec/effectreps.pxd,sha256=EmLw2mVA5zZeeBS5hDIpq8Vxz3s3V45EpXVhHhKN0RI,3208
137
- pygsti/evotypes/statevec/effectreps.pyx,sha256=7cz9zGzTyKLqI5JVWU2hun4Xw072AYCkNMWuIanoIbE,8415
131
+ pygsti/evotypes/statevec/effectreps.pyx,sha256=oKM-2dkI5lS4SCi1L5jBKktE25n9WNiE1CfJCeWxjhA,8412
138
132
  pygsti/evotypes/statevec/opcreps.cpp,sha256=JQpxY-UrEhF26uZe1aNIza8yFhh6yvhXAfTNneC39zA,30711
139
133
  pygsti/evotypes/statevec/opcreps.h,sha256=pmXBPncYxP5T6a5ucrNxB37k_jsRPUUZfx8sCLkVU4A,4463
140
- pygsti/evotypes/statevec/opreps.cp310-win_amd64.pyd,sha256=HgbKOyVGIXrnltNXZB4nESSVJ-9CJhsk83gBOyAlN7U,263168
134
+ pygsti/evotypes/statevec/opreps.cp310-win_amd64.pyd,sha256=g-fF3wwpfCvO_wGRwvEISwdMiyAPqRQqYtkPipMu4LI,262656
141
135
  pygsti/evotypes/statevec/opreps.pxd,sha256=dHYugyGf8GTSmdv3x5QOfLYiOpVpj6o3eatYx3c4tFM,3924
142
- pygsti/evotypes/statevec/opreps.pyx,sha256=1PT6rJwZnkRqQbdx8MDr6VvF4UFxqSdi37etolEq6c4,21595
136
+ pygsti/evotypes/statevec/opreps.pyx,sha256=kxtN2kHBHRW1PP8rm4Hpv9H_Wg_T2RAcXGWM7am0dnI,21589
143
137
  pygsti/evotypes/statevec/statecreps.cpp,sha256=Z3w4WpdON7Mfw_Upo7GI-bsnfioNQE6gBBX_hZX7nOE,1580
144
138
  pygsti/evotypes/statevec/statecreps.h,sha256=CxOSnD3_xAFvaQ59naL28DvO5I0FhGHyETL7075ESrM,465
145
- pygsti/evotypes/statevec/statereps.cp310-win_amd64.pyd,sha256=PyyAq_Q03Gd1oGBwuFqFxMIGJvtp-X6WOsQDLrQNHW4,117760
139
+ pygsti/evotypes/statevec/statereps.cp310-win_amd64.pyd,sha256=oalpaqnKpjHnFYNehVm0By49JYqv6pxNyDrijr1k_ZI,118784
146
140
  pygsti/evotypes/statevec/statereps.pxd,sha256=xm8ZYI1EO1MPojOHqpYBui1M42CjrgXlokt7yaPm_ZY,1443
147
- pygsti/evotypes/statevec/statereps.pyx,sha256=HiSK6dd_AJ0FCLPIRrWPm4JUjpavJ7PZG7I1fH2kEfw,6367
141
+ pygsti/evotypes/statevec/statereps.pyx,sha256=h7u9qo1oFhD2LT8U-Zv7xZR1_Qa1yXJ-fUNh_gWKWZk,6364
148
142
  pygsti/evotypes/statevec/termcreps.cpp,sha256=K_mPH0XQd7zi887CKQKGwKAub-m2dEoOmVfd0MjzXec,3562
149
143
  pygsti/evotypes/statevec/termcreps.h,sha256=1QVetJxTLmmJZi-KVWRwpJmEM6bptg7wF7Qw0F0zaJg,1907
150
- pygsti/evotypes/statevec/termreps.cp310-win_amd64.pyd,sha256=ZalnjmQ01Q4CiaDZg415w7QDtWjEylqV21l_muWuJQ8,108544
144
+ pygsti/evotypes/statevec/termreps.cp310-win_amd64.pyd,sha256=tJaXS1jMO454nL9SJfLX-NNA-YSZ8kexqJdSGc4swhs,109056
151
145
  pygsti/evotypes/statevec/termreps.pxd,sha256=wkXSiqcX7h0vXYcZxBriQ0WcrCX6cOd1rxoA583iv2I,4106
152
- pygsti/evotypes/statevec/termreps.pyx,sha256=IpNKC-1Gul8Ches3GLaHLT36A6YCVcCVYOcWCZyKOYg,7736
146
+ pygsti/evotypes/statevec/termreps.pyx,sha256=aaZcvGzkyBP9ihK0dL1GKOf-WDGeG_3iVF73RB7DpAc,7347
153
147
  pygsti/evotypes/statevec_slow/__init__.py,sha256=eLtdvb8l_QKtxWw0m95EtKC9FlGr5enWmos_0jrzTrY,869
154
- pygsti/evotypes/statevec_slow/effectreps.py,sha256=YS5VC3d0N5Aqw4ikxapjU-6WW_DSsWTIjprUzkBqjI8,8064
155
- pygsti/evotypes/statevec_slow/opreps.py,sha256=nZBaoIAN9puRcVQStVmgo-eSaT4IbKDhlBCXwA1IPkM,21381
148
+ pygsti/evotypes/statevec_slow/effectreps.py,sha256=9xc28Gn-RrMZPMiwqeNkpUCSnhXxmxf1_oSAD-NqMY4,7935
149
+ pygsti/evotypes/statevec_slow/opreps.py,sha256=K9o1yOqG_ht6rbEbm2q9_5qQRSB5OEkM7lB7_zbk9C0,21236
156
150
  pygsti/evotypes/statevec_slow/statereps.py,sha256=X5WBKxRocuoAW4XcvHsTVgis7gQvkuRHo5O7uHQYr0s,5456
157
- pygsti/extras/__init__.py,sha256=5etwD3ObG2P6CQmGQ97QwWMAmFWo6If_NfmYdo5s2bM,854
151
+ pygsti/extras/__init__.py,sha256=xEMUKg4yQOTwTFFOszc1jhwDNLadHSE4dkxK8cN5v28,784
158
152
  pygsti/extras/crosstalk/__init__.py,sha256=XdHVDmPjZgq5p908Vuzt82Omm2_W8Zxi1Yxz5s3clvQ,863
159
153
  pygsti/extras/crosstalk/core.py,sha256=SoLkWihrBhd5sObSTdVsyTH0_KkScujZmiLdSvw2huQ,49129
160
154
  pygsti/extras/crosstalk/objects.py,sha256=HXybxTQ38whrV8iAztlBBsGKHkmLE0axOjcZRZIvJ8w,20225
@@ -204,8 +198,8 @@ pygsti/extras/devices/rigetti_aspen7.py,sha256=KaIeIuli7jWFnX5f8Us22qpcxiubu638o
204
198
  pygsti/extras/drift/__init__.py,sha256=U8phNRAAzZ0E8PMLAO1ZbXpTGooaINzs0EKcyYlF-Eg,1076
205
199
  pygsti/extras/drift/driftreport.py,sha256=3a9CkYsMPB4jpFFu_Zxi7wGJKrtkYbIJGAeWoH4WX6w,27601
206
200
  pygsti/extras/drift/probtrajectory.py,sha256=QeAtisqTn-H8ljjGTbrtxyMXGD5t6R1yrmovhZ6ySoM,23965
207
- pygsti/extras/drift/signal.py,sha256=MJXIB8OkNp7eCRkae5h1tmfUotlvMFrHyo4PPcdWvds,30105
208
- pygsti/extras/drift/stabilityanalyzer.py,sha256=LI62ufEDvaFpuwhEQNKKof7Y1_8lEndpg9px4huW5uo,102057
201
+ pygsti/extras/drift/signal.py,sha256=y5HGlwHdUmLmE6OJ3q7IXoewTyov4goChwLZI9X3byA,30105
202
+ pygsti/extras/drift/stabilityanalyzer.py,sha256=DVyGCxDWfLx1oP19KfmORpMlcKNmun7CQVi-rrYcLDY,102167
209
203
  pygsti/extras/drift/trmodel.py,sha256=waHq3CLzBymfA8uRBFIIxy4c6MAIGKuQ0C-me1QUck4,6459
210
204
  pygsti/extras/ibmq/__init__.py,sha256=bz71QRCsHVY4xFsKwxjbw4nxY6auG1XZfVF4REcQVhU,771
211
205
  pygsti/extras/ibmq/ibmqcore.py,sha256=XaTK4gk-IAU5wDuoKnnCBKLr-4nD0SuTV3V55r4z7xo,19502
@@ -215,146 +209,142 @@ pygsti/extras/idletomography/idtreport.py,sha256=-5XwXpQBcgQU2kYwKVW8UTXAdFqsNZX
215
209
  pygsti/extras/idletomography/idtresults.py,sha256=uh9-vuBaHvxRkslcTECIjjb8W1_PytiX63OUn6LG2Es,5957
216
210
  pygsti/extras/idletomography/idttools.py,sha256=IJvFoJ8K1Wp3DWDqPKIbQZ9Jy3y3tmbq9xjZrA2IHIg,24058
217
211
  pygsti/extras/idletomography/pauliobjs.py,sha256=Bnrt7N1VyBAo6uhJRzsUa344m_DDWRKS34jRrzVRK3M,14654
218
- pygsti/extras/interpygate/__init__.py,sha256=G3UHHTV0rTlXcll7LNvUPHMzCIwBFVyN6VVAYnZfuRo,873
219
- pygsti/extras/interpygate/core.py,sha256=UPMWioVZc5UMkLnUUoG8x2h5sLOa7Lnk6vEGIcKZh9M,34429
220
- pygsti/extras/interpygate/process_tomography.py,sha256=1cSosrH2IuBVQKSyabYhtAcBw0DUFsigTWqQjGp-rO4,6140
221
- pygsti/extras/rb/__init__.py,sha256=2_1jTlXB0VpQ_mYTzPbwKwNE5gf3znEw_1yjxojRoKk,823
222
- pygsti/extras/rb/benchmarker.py,sha256=wA4h-59OSbJV3bK6htyUcGFq4Ptyx9i3DgT8zT91n20,46584
223
- pygsti/extras/rb/dataset.py,sha256=9BYu7dW-CYcMJ9kgOBjf6elSTz_tl1l-DhwKjxiVOnI,16603
224
- pygsti/extras/rb/io.py,sha256=utvh83smm7meoiufqZ1y4I9PyaAlJCv8GneKDZ4W_7s,34713
225
- pygsti/extras/rb/simulate.py,sha256=GHa0lNiLNS47ZanWOnZh5UclLlMSiZKBrLbQ-EooC-c,41329
212
+ pygsti/extras/interpygate/__init__.py,sha256=H-YEQ5KtzMCxzowLiSbLbYQ5Wfh4CfI0pZ7yTFh61EM,1367
213
+ pygsti/extras/interpygate/core.py,sha256=XsYGmxUnZn6Xwd5tmRFmgx8hpTvHQVuGqNOInC8tlmc,32869
214
+ pygsti/extras/interpygate/process_tomography.py,sha256=JPg7c0EJmWzEp2ecDdzEQVWpXiMiGlmohtk86msMjJA,7434
226
215
  pygsti/extras/rpe/__init__.py,sha256=Qz3G6xkFM5Hb40LypIC_ZzAOQZOuhwLhWFGjmFxd_MQ,906
227
216
  pygsti/extras/rpe/rpeconfig.py,sha256=9SMPrb_s6ekpDyCe_E00ggdFKwb8eE3sYBimRYtH0G4,3108
228
217
  pygsti/extras/rpe/rpeconfig_GxPi2_GyPi2_00.py,sha256=bKszRtoLgM5ypGL5_ORZA-hF8CZv1s4gF30WRWqk2lk,6110
229
218
  pygsti/extras/rpe/rpeconfig_GxPi2_GyPi2_UpDn.py,sha256=DKQNRXtbtkmfhCYl03q12SyHOBu_MbgtoHXdHfK6kEw,5059
230
- pygsti/extras/rpe/rpeconstruction.py,sha256=Umg3yG_kSYmuTB1jBJrSX-9eT4MibvEGL_nuh79rEZY,14776
219
+ pygsti/extras/rpe/rpeconstruction.py,sha256=H7MgYOEkeeUdhq5tp6eQDbW75P_ms6NTRDnSZl7mRrY,14710
231
220
  pygsti/extras/rpe/rpetools.py,sha256=dEEtlMXHgb24Cfiq_fAJDHAt2dCEHknBIlTMyHwgM2c,18353
232
- pygsti/forwardsims/__init__.py,sha256=GSc16nSphPWiJggV5FgS64CdvI_rRiBv8Ir0cgFLA0E,1046
221
+ pygsti/forwardsims/__init__.py,sha256=zoOXa1F8F6-xaPVXxToqxdirTAcHQrM_FUsDWEEy1FU,1094
233
222
  pygsti/forwardsims/distforwardsim.py,sha256=sHde2tufHhl9V9zmZUqOljHprYOO5pS3zw9g_hWR1o8,29823
234
- pygsti/forwardsims/forwardsim.py,sha256=tNPS5JxK-WIhNjiYcKKpG-gEP-wEoNzB4PdNSkOzKuY,47056
235
- pygsti/forwardsims/mapforwardsim.py,sha256=1Tc0vHn7IDPiL6Iqi9d_pqAZZ2fY0yzUTbkybzxLLzk,39415
236
- pygsti/forwardsims/mapforwardsim_calc_densitymx.cp310-win_amd64.pyd,sha256=tsFSfLSESQMilDo4tYzcqQwsejA7LqWjjptppY0KBPQ,302080
237
- pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx,sha256=DLPWwFsQcO79C2PjIYOhuQYUG7fdKL89ZZqoYce0dJs,32516
238
- pygsti/forwardsims/mapforwardsim_calc_generic.py,sha256=fWl8pfVuPyBGa9aWHs_ILMjv2joB2Hrd6ViSIRuwpBc,16684
239
- pygsti/forwardsims/matrixforwardsim.py,sha256=txoNP5nSAPvLqf5j_fBxAOwRe1_MZqQy3PE4Rqo8KaM,117757
223
+ pygsti/forwardsims/forwardsim.py,sha256=_qVi2vuxmKJ5aqi8qHeqPNp_wK9oZ4A3QHgiUHeDBwk,45320
224
+ pygsti/forwardsims/mapforwardsim.py,sha256=XkG4n7JzTInL-VaaCyVNJawFB6ahyDwPlW9AGvk1PBE,42664
225
+ pygsti/forwardsims/mapforwardsim_calc_densitymx.cp310-win_amd64.pyd,sha256=ncF90v7e42IBCA0jpBXVGYAFLPb4MIhKtL6NCSBp4mE,302592
226
+ pygsti/forwardsims/mapforwardsim_calc_densitymx.pyx,sha256=WbjxQoUa2kaftDk2mC4axHk7D8Geuru8CPq7pd1_fHg,32676
227
+ pygsti/forwardsims/mapforwardsim_calc_generic.py,sha256=wiAL1b0Va38wBn2gkyJRgnrmEn3IW7pBoNni84-i01E,21324
228
+ pygsti/forwardsims/matrixforwardsim.py,sha256=L0Z-shTFmeq_3mA8PUMkpIurp-ckJPZ73-fPFLcu90M,120590
240
229
  pygsti/forwardsims/successfailfwdsim.py,sha256=zs3wat4bAxJ0Fif_MRr_E8RhNW_Y11rhDGTZlpMViaM,4357
241
- pygsti/forwardsims/termforwardsim.py,sha256=HFl7M1elrUoK1VLW1muQkyMQtPQBDbpAKd1bXNff8aw,75154
230
+ pygsti/forwardsims/termforwardsim.py,sha256=35r_uXyuwqV-jpWsYO-BkpI-wX0zpNEk_uYATbjATYo,70201
242
231
  pygsti/forwardsims/termforwardsim_calc_generic.py,sha256=hqaXJ6z1D5cd9nkykQNSVLBbZFB7Z8d91rybTIEHb1I,60090
243
- pygsti/forwardsims/termforwardsim_calc_stabilizer.cp310-win_amd64.pyd,sha256=j6r3OOuPok2-NKfxrn6kJBKgPKmQK_k_wrbv7ontmDg,242176
232
+ pygsti/forwardsims/termforwardsim_calc_stabilizer.cp310-win_amd64.pyd,sha256=oThV2G6roovzP12fZLCYl0cKsbo3ZmYI4S_OTIS7zoQ,243200
244
233
  pygsti/forwardsims/termforwardsim_calc_stabilizer.pyx,sha256=L5m2kFzZmWS89gvbEbOj258UibWY2GfOIFwYjKZd9fw,71849
245
- pygsti/forwardsims/termforwardsim_calc_statevec.cp310-win_amd64.pyd,sha256=FQccCHdOU4-6iXDVQjUroP4ylnrcE8cTMrJ4Mj_BIIY,241664
246
- pygsti/forwardsims/termforwardsim_calc_statevec.pyx,sha256=gXxAM83pvXsnsF4v77fpezq5w_rHdgKdxWYbPBzEhNk,101140
247
- pygsti/forwardsims/weakforwardsim.py,sha256=n_GqVlVL9hH6nHp35wbDy6HFNQeZxVtyc0HwU5m7Keo,9263
248
- pygsti/io/__init__.py,sha256=oCVbNIYCdNyIaaFFZD3SxdJr3JMk1zX8jQuVClzaWcI,1090
249
- pygsti/io/legacyio.py,sha256=yvYYrW1WlkSDdqIQHB3e7n2ovln6z8l1khkMnlW76hk,19106
234
+ pygsti/forwardsims/termforwardsim_calc_statevec.cp310-win_amd64.pyd,sha256=bZfl2bsODo96IwwNC0jqewZpkjpaOt_fs3r6dOQ2BN0,242176
235
+ pygsti/forwardsims/termforwardsim_calc_statevec.pyx,sha256=8TFPwDFxQ3NS_a1k1RZebnsfFc3bONt-Q3LjJq9LzHc,70577
236
+ pygsti/forwardsims/torchfwdsim.py,sha256=e8REfKfb5YVquVMLM6c7x04tC2i5fs_twl_Ri_QOiAE,12311
237
+ pygsti/forwardsims/weakforwardsim.py,sha256=dOGXh1kRC8PQv_CBDjRY_6KfpaFxCDC0Wn-cuCfF47k,9263
238
+ pygsti/io/__init__.py,sha256=4Qmxi_W2YmP_hzdP2P41prSMyo80UEZlZ3aVtWfeHgs,952
250
239
  pygsti/io/metadir.py,sha256=C8N5PuEB0ASRjFwq1-_QKigyc6Mq8RjFGOX8zT18I6U,26904
251
- pygsti/io/mongodb.py,sha256=qWO__UdnmprsbbIW-2bCg4l8OeAHSQ8EsvFkPnBd5Gc,48933
240
+ pygsti/io/mongodb.py,sha256=weDvb02HvDxfBRqbwmZbCWCmaymbaz6T2pezO1VhxRY,48839
252
241
  pygsti/io/readers.py,sha256=6WyfRTzQjrIeZv_dCKjuAfTjHHjNdFshLa9DEkmcU40,37319
253
- pygsti/io/stdinput.py,sha256=LxT7SDKYNiRSKHgL0Xfdt1ffyocn1wUVKNoz_zieWbs,63557
242
+ pygsti/io/stdinput.py,sha256=R0M8GHwQ2ffD_d9QyvntKqM3LJMAUD9Pccq193gaMmo,62440
254
243
  pygsti/io/writers.py,sha256=V3pRbSKOLHdRQSpYwwZZF0XyMfq4PT1Ixp7UwLlzEfg,34431
255
244
  pygsti/layouts/__init__.py,sha256=VD-eVQQcpUu3ElRZjWnaTH_CW2VKYXQ8FeFW1egNe8w,732
256
245
  pygsti/layouts/cachedlayout.py,sha256=4Fzs7C9CYAt-k7mzmoSvAwGAS7RHphLvgbvXcyqNHAY,6940
257
- pygsti/layouts/copalayout.py,sha256=tYO2P97zp-ZIQtlPVNoRddCi29ba-CNecIseJBDeKL8,37174
258
- pygsti/layouts/distlayout.py,sha256=YnsZJLfwYEa6PSESueIL-ze2ts_rV6Nv4S9OF69Tejg,83893
246
+ pygsti/layouts/copalayout.py,sha256=L-pIbi2vnFp0q2RN4UqOEhKh1lL2DslJOf8WSLN-_uk,36931
247
+ pygsti/layouts/distlayout.py,sha256=8IVl31CI9sQEsk5Yqdx7sklfAdy4OniJROTTb2nCjI0,81466
259
248
  pygsti/layouts/evaltree.py,sha256=OM2NU-jFYo-24lq-5qco7UFvcIEEaP6zdVVp9--5--M,24002
260
- pygsti/layouts/maplayout.py,sha256=-qlOlhti_8WGV7SFeDWA6dyZp_e82EQYRAsPj1KnhN8,12926
261
- pygsti/layouts/matrixlayout.py,sha256=LuxZZjwMZ8JS8hcJ0-ebGx8Bm-1QlgUUgZI5A7uHZr8,20044
262
- pygsti/layouts/prefixtable.py,sha256=6ewekl3BGwkpPG6rAQo4OiyD7tzPrYgodp7ftzZyiMk,17988
263
- pygsti/layouts/termlayout.py,sha256=0c2MXZ4po_imA0zzyntCDKzHq2H8nRcZNHviDzQ7ccU,11080
249
+ pygsti/layouts/maplayout.py,sha256=_XIJGkUXCNuFDdt6Rl-WJCsQnSirJ1q_JE92y93Jgz0,18328
250
+ pygsti/layouts/matrixlayout.py,sha256=OA4MBbmv9yj-foqdVtuN2jEsRzhTOxLq8k5PUQVUxNA,22395
251
+ pygsti/layouts/prefixtable.py,sha256=0Cdc0f8SJHrA-6dJenCxYg2IObk9KijGPA8mD57EFNc,84192
252
+ pygsti/layouts/termlayout.py,sha256=W9-saiCxuvHCl8cYaNE6uNYiaRUTvvZuAQ7dTclutd0,11080
264
253
  pygsti/modelmembers/__init__.py,sha256=5O_EtAOLv1CaabQJ3TYYPjHY-3iCMqnsUkCA_s-X6HU,2221
265
254
  pygsti/modelmembers/errorgencontainer.py,sha256=1jeEpPLmMT1I28ORHMQbFtFRll6nnBBlAlV5wWVPmAA,24262
266
- pygsti/modelmembers/modelmember.py,sha256=3Hu8-0If4scm6BGk02Lg5k5punPOsxpIJCthehe8zQ0,50041
255
+ pygsti/modelmembers/modelmember.py,sha256=NnT3qRLId17XzXt0aJ4XINMfe_ICx38YLvu6p1PBL3I,49478
267
256
  pygsti/modelmembers/modelmembergraph.py,sha256=45NrbqPXCCJ3N1To7abppKrPzmP8FKpPL4hkfw1oE68,10182
268
- pygsti/modelmembers/term.py,sha256=c-bH-6E2opY3pgF0lsNHjJkbQ6SsQbxWf5_qlf4wYwQ,31077
257
+ pygsti/modelmembers/term.py,sha256=n5HCX29StNmVMCB79qZ9SBVgrvNI_BqMWnXElaI-yXU,31086
258
+ pygsti/modelmembers/torchable.py,sha256=wSVhamN5ywyikQIqmO702XyF76pqYqA6K7YZTy_Ddq8,2108
269
259
  pygsti/modelmembers/instruments/__init__.py,sha256=thQWfqIeEmpqi-4D3TBZTLMDzKOKT8Cj_28HKVF_9es,5418
270
- pygsti/modelmembers/instruments/instrument.py,sha256=lesiYY4Vo6Hrcv9eA3TLC7F_9dl1pSh1kWteJg4pHEg,16860
271
- pygsti/modelmembers/instruments/tpinstrument.py,sha256=kUFWDgopth8HiiDMcENkj8gxF0MrwDZy-oMGPl0RWMc,17943
260
+ pygsti/modelmembers/instruments/instrument.py,sha256=Pzt6ESY8KKh2zvOOInMLA9vFMDbqBaPrYJW7srubAG4,16926
261
+ pygsti/modelmembers/instruments/tpinstrument.py,sha256=Y_plUfE-HVsX5YsN7QAuwEcIU5y-csfLSf7QdxcRcIA,18041
272
262
  pygsti/modelmembers/instruments/tpinstrumentop.py,sha256=sgO3yk3vSYmdDkxBXfG6_smLWyEYssiCT318L3FuQyY,11110
273
- pygsti/modelmembers/operations/__init__.py,sha256=rsc0p28tKR7dvf81kfgmT92eyNI-SZGQLLa-VJnpVAU,25796
274
- pygsti/modelmembers/operations/composederrorgen.py,sha256=Xe-lOeWvoz-vBvegVOnlGoWP5E7k-leG_r_5QY4lK5I,34526
275
- pygsti/modelmembers/operations/composedop.py,sha256=uWzHg7bDOlj-eY9Sy_PSkCK3HNMxxw2xUGYbM-kMbqA,43206
276
- pygsti/modelmembers/operations/denseop.py,sha256=yc5S1o2iJ60stRUUMBd6HA71i2Na_AafC7DHdP6QEE4,28540
263
+ pygsti/modelmembers/operations/__init__.py,sha256=oozYDbQ-JjKDpTm0RGzC2l3z1eJuarTxD08iQS-tARk,25667
264
+ pygsti/modelmembers/operations/affineshiftop.py,sha256=jKPsc0c31dtQ9-gtUDNdYj5t3TpoVRT73sIjZCjxmlQ,8245
265
+ pygsti/modelmembers/operations/composederrorgen.py,sha256=0xz-bQIsPMCT2lGVIQtD47HrYHwJAXbu_SF6TJuU8DA,34551
266
+ pygsti/modelmembers/operations/composedop.py,sha256=LPyVeRek8ljTl8wsim5l7kMk4dzICged-7uGzLoHTrk,42054
267
+ pygsti/modelmembers/operations/denseop.py,sha256=uvnPLQE0vd-Gqf2vRs04genR0aSGysGggRyJgOHdtHA,28600
277
268
  pygsti/modelmembers/operations/depolarizeop.py,sha256=V6qJn9eogqtbPhOpCh3B-DZfUWknqsemn9l8kF5mUVc,6351
278
- pygsti/modelmembers/operations/eigpdenseop.py,sha256=W6AhM1lz1Vs0RWQy7vq0f2nEDWAiEhEVs_jiUHkpIz4,21850
279
- pygsti/modelmembers/operations/embeddederrorgen.py,sha256=MoZWiKqhnpCv8qqIzRSrMf-UwxhRlUTdWRTNlDnajT4,16455
280
- pygsti/modelmembers/operations/embeddedop.py,sha256=BXmKT5VT1bOWC-9CCiNe-kh-zD4eOWSIcQYoabcDIq8,41394
281
- pygsti/modelmembers/operations/experrorgenop.py,sha256=ept-exI7PcBhlAGvfOEJoZ3x2f0RgziGPNVww2Tv0Mw,36809
282
- pygsti/modelmembers/operations/fullarbitraryop.py,sha256=uVllo4BLmrZbjylxeEUNsPu-8nCEQh-loj0kwLE-B9Q,6053
283
- pygsti/modelmembers/operations/fullcptpop.py,sha256=ioSHVf8N0ABXtJLDDYkvnR7Ty3bE0qJtEdPvETNBwHs,14892
284
- pygsti/modelmembers/operations/fulltpop.py,sha256=q_zFc1fvA02ThmV-YTJnckGheDvYzrPjBxr1bHM5SAU,7817
285
- pygsti/modelmembers/operations/fullunitaryop.py,sha256=pkBw2vJdULmOdKVOx-Eq7md78XZbRyF5gDGs36l7uvs,10414
269
+ pygsti/modelmembers/operations/eigpdenseop.py,sha256=qdBF43dVnxpSnMI7bR7Iy9LkSFLJ1QxeSmYdyEj5mco,21834
270
+ pygsti/modelmembers/operations/embeddederrorgen.py,sha256=M25cIcz5kkc8d4JNmEmEsitKjDliDK9bzLimobk2Slw,16422
271
+ pygsti/modelmembers/operations/embeddedop.py,sha256=ovQT8imIAKan32mNwpZkETyOOf4FBaypRIGqj3Ssrdc,41327
272
+ pygsti/modelmembers/operations/experrorgenop.py,sha256=NxqtfuIvrezkEpUb124azwoJ_La0dDQLFFq6QhjIX8g,36929
273
+ pygsti/modelmembers/operations/fullarbitraryop.py,sha256=rASSfeUXj6VKZkp1ShOS5OeNQTK0c84wVgn81v3PQ78,6122
274
+ pygsti/modelmembers/operations/fullcptpop.py,sha256=z3El9xDZCUQEJeBHBEs7lggq7emQdfLWELF4lUGSZiw,14886
275
+ pygsti/modelmembers/operations/fulltpop.py,sha256=lk_j23DWSkLxDgAngecnfx2IyKvdDwtIK5v4Lbct9FY,8420
276
+ pygsti/modelmembers/operations/fullunitaryop.py,sha256=BTBMpZc6HO0YMMkwqdTsENUfPURm6KlynDGWdupjQas,10445
286
277
  pygsti/modelmembers/operations/identitypluserrorgenop.py,sha256=24jjweJ1DavPDllOAVeKGXDyS2UyluV0EV_BOPClR4E,22824
287
278
  pygsti/modelmembers/operations/krausop.py,sha256=caF8rgmLFofBjV3oKHGaCo9eSAftCPe9Zv26oGcyTAI,2830
288
- pygsti/modelmembers/operations/lindbladcoefficients.py,sha256=OU4cyWQPh2oG7SdGMn509Hcw6dOw2yTwiutdG89cuwo,66685
289
- pygsti/modelmembers/operations/lindbladerrorgen.py,sha256=mSJdkz_79VELTsfGqq0YdsQCAxdp3pF8-SkyIEs4Uvo,89827
290
- pygsti/modelmembers/operations/linearop.py,sha256=MNKmI9t46_l37jqaXp253fwoBNN1qSz7BtRwiczz7m8,36281
279
+ pygsti/modelmembers/operations/lindbladcoefficients.py,sha256=nEZcoassKS4wjbQFLqMXxB9elZcVdd9a7rXAz3hMvIg,67424
280
+ pygsti/modelmembers/operations/lindbladerrorgen.py,sha256=R4X4_Bpcpde6RcBtuiHgyDXSb3618D3myHoED2Mggs0,78162
281
+ pygsti/modelmembers/operations/linearop.py,sha256=IhuE7b7HbazLHU5T0pmDHYZzT_ASSRqaYgR7uaEjvjg,35509
291
282
  pygsti/modelmembers/operations/lpdenseop.py,sha256=9yTfooabox43Fvi52rhZAmdzX8HEZyqemKf2n-m1gvA,14772
292
- pygsti/modelmembers/operations/opfactory.py,sha256=L7N4z0GW_ofbVNdX8axqxZns-bi6MzrE84IIyKBy2fs,38535
293
- pygsti/modelmembers/operations/repeatedop.py,sha256=FqGUXTUL14k6dAXv-1Ih3WGxbFgA4LDI56ocbJJoe1Y,10402
283
+ pygsti/modelmembers/operations/opfactory.py,sha256=Fopk6LvQzxbKIO_glY5hUj3f36itsqLHQMS9rR39g-c,38560
284
+ pygsti/modelmembers/operations/repeatedop.py,sha256=rsD9iAnl_9OFT5kI0DkB8fQfpp-pm75TiuE6sotKXxc,9344
294
285
  pygsti/modelmembers/operations/staticarbitraryop.py,sha256=I0pinmFqDpWISYc2M1Rnr8-P_IQwfVXSQef1EJJeaTg,2776
295
286
  pygsti/modelmembers/operations/staticcliffordop.py,sha256=fnglSrKLkbs27EGdrEVQrE1LM3O9andDwNgxzEcEa44,10380
296
- pygsti/modelmembers/operations/staticstdop.py,sha256=qveln4LjkxB_MZ3EI-JujnpnYbIAx2fcTzO7mZvH8Bk,9744
287
+ pygsti/modelmembers/operations/staticstdop.py,sha256=o8E-x-oh9TuAVrwJvOwrdP9vuZWoHAv5TRTkXPt8zI8,9769
297
288
  pygsti/modelmembers/operations/staticunitaryop.py,sha256=Wp1Q96CLLCcPoE6Io1MU_wJlAbKqVwBppCvFCaXJCnI,6288
298
289
  pygsti/modelmembers/operations/stochasticop.py,sha256=QXZNigUYmbiTEtLExMVP2LMnwx0u2LU0l6wkT2pN72Q,15598
299
- pygsti/modelmembers/povms/__init__.py,sha256=1eUxK5oeYpbjoIh4xbTapVeUQGrF_8EebQeTO97vlrI,27431
300
- pygsti/modelmembers/povms/basepovm.py,sha256=neLm7t8lndOo40uAeEmUepHlQ7ODJeDEH0uOttHERxg,16017
301
- pygsti/modelmembers/povms/complementeffect.py,sha256=winP5ZCkdTWUGOEFGdqA3aDF3FU-a7TxxgCGhiFgjLg,9612
302
- pygsti/modelmembers/povms/composedeffect.py,sha256=nDsidfiqaXKCMW8gdCWLwxzjaeXAsGNfh2OXdjcm30A,37200
290
+ pygsti/modelmembers/povms/__init__.py,sha256=fuJBv9IFQtnBt84JLhkzMamgPEjBku1NVJZu3s1Ifb4,27425
291
+ pygsti/modelmembers/povms/basepovm.py,sha256=SqEpg140H7BhSk1uAvL9B_ker5ZBYa7fN2teqXATySQ,14968
292
+ pygsti/modelmembers/povms/complementeffect.py,sha256=UT_2t_7dz8gfL7Vw-dFCppV8o_p6uQk0_kvv2Dh6ljg,9417
293
+ pygsti/modelmembers/povms/composedeffect.py,sha256=AhoYeJPO5w9dyrzRnrI6cq2fImvqPPc_ZjzSYA-e-68,19696
303
294
  pygsti/modelmembers/povms/composedpovm.py,sha256=qbLe3ybVdlcCF_cNVkBu1qM79Ch3nfHKd0EVw0F2e3A,21450
304
- pygsti/modelmembers/povms/computationaleffect.py,sha256=2JUmoShkZpxP8CnAJgh2QI4I5B2JEohE079FKWEMMdA,13917
305
- pygsti/modelmembers/povms/computationalpovm.py,sha256=7KiQuGtaAbsaJbzHzjTWHflF79zS1KTlPL5cu-xQHfY,9215
295
+ pygsti/modelmembers/povms/computationaleffect.py,sha256=7XbSfxBoZFdDwmzq7nqO4vlqQkLIztmbr2ZOL_rJ6PY,13942
296
+ pygsti/modelmembers/povms/computationalpovm.py,sha256=wAv798_qLSlSJs9pmOgBsOKmezNGllm1K0l4upzId6o,9252
306
297
  pygsti/modelmembers/povms/conjugatedeffect.py,sha256=N2cTXZqbECIyja53Adre7BvKbugSFklrwGK-L-UHPCA,15044
307
- pygsti/modelmembers/povms/denseeffect.py,sha256=bOWUzbpanco5YyCkJXBD6sbFtZsTTqAIIBZ-zmy1u_U,5240
308
- pygsti/modelmembers/povms/effect.py,sha256=tXDojdW_Yh6aEszAI6l_Cv9YKaOPrL5vdXLQoj55gEk,19280
298
+ pygsti/modelmembers/povms/effect.py,sha256=C4e5OC0UqC5hjqnDvsBHJM1vi8VMTXvfHT8na6eQqd4,19155
309
299
  pygsti/modelmembers/povms/fulleffect.py,sha256=cPbJZmcXlba1K-yA6whwPA4hxRNlsrYBoiPbUCGU5nw,3155
310
300
  pygsti/modelmembers/povms/fullpureeffect.py,sha256=s9xiMeXLCwyav7mFjwtFG1WPpXTi7Pa3-ryC0cSycAs,2322
311
- pygsti/modelmembers/povms/marginalizedpovm.py,sha256=yNwpmJXh0XbPeZNXun3QKtwvn9aI7cRTZXFFn778cV8,13956
301
+ pygsti/modelmembers/povms/marginalizedpovm.py,sha256=MWi9KrkhSaQz88IY5GJXxT2448nb8ZGo-ZTVJ05ePgc,10692
312
302
  pygsti/modelmembers/povms/povm.py,sha256=lBo-Sh74jE8XyXXR5b-zcyD6yGv1ZedG7SoiL-4yZ5k,9818
313
303
  pygsti/modelmembers/povms/staticeffect.py,sha256=OCBj91uTOCE1q9V7mrDrRl8dJ6vblEWz6UGQ-7GP8ZM,2474
314
304
  pygsti/modelmembers/povms/staticpureeffect.py,sha256=lwO7Xs-KeENDWd01H0TtucHkHRxsiQPgPp1wgM2ZhPo,2074
315
305
  pygsti/modelmembers/povms/tensorprodeffect.py,sha256=l0WxtdTmYeDT2mr3jNZqcXQLwDwx1DvwDpb1E_Kesnk,18290
316
306
  pygsti/modelmembers/povms/tensorprodpovm.py,sha256=T0BdGtQn4imdeisOE3V7IjI0wqfByNyw12bMJfaqG8Y,10928
317
- pygsti/modelmembers/povms/tppovm.py,sha256=T4MhV-jcbXkC4uyEX1KSb0bWd4gEtMnDeD2SWwVKfyc,2897
307
+ pygsti/modelmembers/povms/tppovm.py,sha256=LBXU8o86nNBtIFOo_mlLx8z66vg7j94_CuwTZCca0HE,5701
318
308
  pygsti/modelmembers/povms/unconstrainedpovm.py,sha256=UO9IBlys7NvK1KisKYXO0grP7bK3POgih3MRoYE6Sww,2373
319
- pygsti/modelmembers/states/__init__.py,sha256=y2hflgW58-d-2s8ZUc3hS7e479E80RPyDc4I9mwRX4U,20367
320
- pygsti/modelmembers/states/composedstate.py,sha256=NMLiMTUZuja8_p0Ocej3ixchXInDOEWlWrj7DaQyu_M,42213
321
- pygsti/modelmembers/states/computationalstate.py,sha256=UJ_Su6oHWmrtgmWKvDMiHgGb39IatupP7I9r1GEhVOo,14592
322
- pygsti/modelmembers/states/cptpstate.py,sha256=rWBeUA8DgpbR_ZV8USi1wCi-j4PddU9Zc-vs_gvxN_Y,17049
323
- pygsti/modelmembers/states/densestate.py,sha256=pMaYDmTRw3A-yt9pWROfe7s5Y5dtJkR3fbG0WlV-XFA,15371
324
- pygsti/modelmembers/states/fullpurestate.py,sha256=w-_22pkVfp8DlO2OjTwe5fcHPnmnmoJAKHvLio8E4_Y,5930
309
+ pygsti/modelmembers/states/__init__.py,sha256=aP3Q-SWsmGMljoSpqxU2hjbktBpL9T2prNgeR4hbNTQ,20168
310
+ pygsti/modelmembers/states/composedstate.py,sha256=FJrmNkyboCgcYOXXNfGYYVtTdka4vA4fWAFaw7pGBKE,24909
311
+ pygsti/modelmembers/states/computationalstate.py,sha256=U2e7dtqq5twlz-IQxM-eQgUKImpVEbpwDU9qhLqqMJo,14613
312
+ pygsti/modelmembers/states/cptpstate.py,sha256=nqRi5xci1TUpUa8RnnQb4tKB0AvoZNRKfIEVvCtUO9U,16983
313
+ pygsti/modelmembers/states/densestate.py,sha256=FhacYgdH4Gf3j0ztiNE7ONRVKH2nJT8PdsT0UwpdsVk,15534
314
+ pygsti/modelmembers/states/fullpurestate.py,sha256=3hWTogOgRHk1sRA-IRSV71EApzEWAjx6RKiSqdHoOEk,5118
325
315
  pygsti/modelmembers/states/fullstate.py,sha256=iYC2Pb5zy6RW6NXE-rwgctd5HruqsVNMhyHiqcAwu6g,5312
326
- pygsti/modelmembers/states/purestate.py,sha256=7fyYBiQk8BhLeCgpUmpER8A0UqU0XA0o249cyEMe2sE,11831
327
- pygsti/modelmembers/states/state.py,sha256=nXuWXlrLvHh4kaIC1NJGj6f_ym24cVf5fUuMgMT4IC8,22533
316
+ pygsti/modelmembers/states/purestate.py,sha256=Q_w0nqIelHz12u7W4TEPm65Ri_LV7tw2fgMpopL-9qM,11872
317
+ pygsti/modelmembers/states/state.py,sha256=Mj8_GA4oFOcDVyHJOxALEUe15RSuiXX0fSpZZa7Ltu0,22411
328
318
  pygsti/modelmembers/states/staticpurestate.py,sha256=gXUq7JiKGAy2Rc1qZHuTeYXnwbay5G23vRI8DZGmh48,5477
329
319
  pygsti/modelmembers/states/staticstate.py,sha256=dZXlC9nEW6T-i0i1h_u2praf_1WRknbuhO8-ysQ_xxc,2402
330
320
  pygsti/modelmembers/states/tensorprodstate.py,sha256=Nhh8ATcGnr14sD5YXfXXittV6VawTajJjtzyU0gdTQ8,14970
331
- pygsti/modelmembers/states/tpstate.py,sha256=yfcHnOMUAkWockftYyDylM4WNW6Q2UvkyDf04hfRKG0,8439
321
+ pygsti/modelmembers/states/tpstate.py,sha256=hpdHjp_FXKazmE9OTKb5ypfuPaUGw_hsW1qM5wh0WeA,8960
332
322
  pygsti/modelpacks/__init__.py,sha256=TfGLYrOJXOs_CO7d3kZuZKZJYPkCAmEC2XdKtGCdLXg,827
333
- pygsti/modelpacks/_modelpack.py,sha256=OZA7B88GXOGQEiqd-FXoRs1w40x3pDxXNtwcTuaQ8fU,22621
323
+ pygsti/modelpacks/_modelpack.py,sha256=nnhEtadSESXLfl8FxCcJTxZ-4KcDlbtaR_DNWCTpYYQ,22667
334
324
  pygsti/modelpacks/smq1Q_XY.py,sha256=FM-4gMHWNbsjjZl3cBOf6Wwbe6bwmklC_kCa00r7mzI,5746
335
325
  pygsti/modelpacks/smq1Q_XYI.py,sha256=7tc5QiwWEi645th2q7BFEkVOwqS5e-aevnMe0tvHGCk,6563
336
326
  pygsti/modelpacks/smq1Q_XYZI.py,sha256=IW8p-QWLjhsNuzmAxMMIXJidnRMeqpMjhrwDMC-DpjY,5539
337
327
  pygsti/modelpacks/smq1Q_XZ.py,sha256=-_TrlgFZ6aAq1AZTh3zVQ5UcTX-t-v5tKgX_xPHLSIw,2855
338
328
  pygsti/modelpacks/smq1Q_Xpi2_rpe.py,sha256=a48M9bWUvTIFxUiNaSyGpYRYCAHoDGRJLhrZnf-2WsI,2245
339
329
  pygsti/modelpacks/smq1Q_Ypi2_rpe.py,sha256=SiepNtT4UzIHgwruYsIot3vzPo7t_FAGyKS_I8d6BhA,2244
340
- pygsti/modelpacks/smq1Q_ZN.py,sha256=x7jnQ6dGpPiOihsVtyNhFoNtSnNgLNDVs5CdBX90wCc,3455
330
+ pygsti/modelpacks/smq1Q_ZN.py,sha256=tKtrrSsrJHo0wSx1KmF8nDfcjmi9GOWfBPeykNCN_GE,3536
341
331
  pygsti/modelpacks/smq1Q_pi4_pi2_XZ.py,sha256=sp7YBsDn8pAsecQZVriP_rUzLE9Y1gnctyzpkGtYXRk,3337
342
332
  pygsti/modelpacks/smq2Q_XXII.py,sha256=9RbzllwR4WiiP8hJZWn7MKkI4fW6EGf3kfObj-aCZHE,39898
343
333
  pygsti/modelpacks/smq2Q_XXII_condensed.py,sha256=AVcLkjfWjAQR3bb8RZ7Q8RCOl0qxeSu38GEjQvv-E8A,39034
344
- pygsti/modelpacks/smq2Q_XXYYII.py,sha256=tloe82GY3D3pMvZzS9yHSTNdsnILQq7pJz0fPjfhIQc,140765
334
+ pygsti/modelpacks/smq2Q_XXYYII.py,sha256=0ZJRXvdWC38KRmvo15_EXW_bjhsFFNdBMRtHZwu6lCg,140837
345
335
  pygsti/modelpacks/smq2Q_XXYYII_condensed.py,sha256=bxsC0VjRBzoYcP1sgEwbAOXVpHd3MgAYlQIDr2wmgr0,118791
346
- pygsti/modelpacks/smq2Q_XY.py,sha256=g3FReBhh8qzb4katqk5PMYNwfWJecCVNfpnBr_3qRGg,24227
336
+ pygsti/modelpacks/smq2Q_XY.py,sha256=hwZtk8mEf-7REiszQrzyjndFFmay1heh20YDfbgY8SM,24178
347
337
  pygsti/modelpacks/smq2Q_XYCNOT.py,sha256=QVFFcOuLqkJP2VTjrXRQvYal3fSV-pTkZXOxTFFBsMY,31709
348
338
  pygsti/modelpacks/smq2Q_XYCPHASE.py,sha256=QkIEcLOMZ4J9TjPtpXy0eAH4hI_h9qte9k0FRitODtI,33324
349
- pygsti/modelpacks/smq2Q_XYI.py,sha256=PnDzuamnHzbLOlwKJg2ajFP4ErkSwSTTflxveOMQu-g,35577
339
+ pygsti/modelpacks/smq2Q_XYI.py,sha256=YK7Y61mXcpsD-3FX2gsAs_UBl_oyqZ2gnFjH-F2QAq8,35584
350
340
  pygsti/modelpacks/smq2Q_XYI1.py,sha256=DAfVVonwi_JL6cYrZQWUb3wt-5Vn5WUVA4QWASJ_iM0,6543
351
341
  pygsti/modelpacks/smq2Q_XYI2.py,sha256=zKdGlCBEjezYFg25_KZc5uzY5Z-ekAIRZyo4lkmpjOQ,6694
352
- pygsti/modelpacks/smq2Q_XYICNOT.py,sha256=SZgrE0McuzSyRPj3EdONO-NK9vNrv_tX00gu7kaWFPc,39301
353
- pygsti/modelpacks/smq2Q_XYICPHASE.py,sha256=HxrzMiLxQgWDWCzid-1Kgp8EgT50DNQcMhGJ-R7TRJ0,39975
354
- pygsti/modelpacks/smq2Q_XYXX.py,sha256=3rpwyfwlHuIKI3yZDGMDe0WCwUGTsWpAAWiB0043yBA,31593
355
- pygsti/modelpacks/smq2Q_XYZICNOT.py,sha256=i1n2ATjjFNyeODvodhlVIixkeJqA21SdmGtyG4jEmf4,54662
356
- pygsti/modelpacks/smq2Q_XYZZ.py,sha256=nhWLWmxhJhHiKs9bDjzbYzQ9N42Trudhp-g5VH99hjg,31593
357
- pygsti/modelpacks/stdtarget.py,sha256=0dSX2OdVPPOic4RqrtHB30jBNaGs8KqLuAmcAv7ZuqA,24452
342
+ pygsti/modelpacks/smq2Q_XYICNOT.py,sha256=_q9Q785D89bqu2sVTP5aXhj7uWR8WmhYfHXVURYT4cY,39315
343
+ pygsti/modelpacks/smq2Q_XYICPHASE.py,sha256=3WaPKBlq4Yk6JLYcrckZzQzbR9WoRQOYJ-wLpvZUyhI,39990
344
+ pygsti/modelpacks/smq2Q_XYXX.py,sha256=aLn3j0F36bsP984gx17ZBIDQ-ddIIw5ypKWvGlmJquM,31596
345
+ pygsti/modelpacks/smq2Q_XYZICNOT.py,sha256=KfJ3A6SnLYtKQhuRsqrKQwI5Sn7QtEMri77sEOqnyNg,54678
346
+ pygsti/modelpacks/smq2Q_XYZZ.py,sha256=jzwwtXowdh1Rn_6PimXXXglIIjU_PuJtRKPvN5KVxqY,31597
347
+ pygsti/modelpacks/stdtarget.py,sha256=Vomru69_7Knc_TKG9j_mrxTzSGj6IF0Icc7jEeaI-IY,18857
358
348
  pygsti/modelpacks/legacy/__init__.py,sha256=4VGtHvOXFtV_8yOSIRcPI3XmuoaoqCLZeA9KzOz3Hso,1027
359
349
  pygsti/modelpacks/legacy/std1Q_Cliffords.py,sha256=AVL9q1T8FobSger8eQI-0TeG2-AXPMECQZJCJZ2H4-w,4650
360
350
  pygsti/modelpacks/legacy/std1Q_XY.py,sha256=IOtOGK4RwfuZgudkdvY_bEuAnj2FSfI9KlmugTspqRo,4889
@@ -376,79 +366,80 @@ pygsti/modelpacks/legacy/std2Q_XYICPHASE.py,sha256=jF8vahnCxxvVkzEbRdSLHFBDnVc7q
376
366
  pygsti/modelpacks/legacy/std2Q_XYZICNOT.py,sha256=XUiOW2PNoYAhdx3qGSVQQ8LqhB2SobkGr8gUJmhyicM,38651
377
367
  pygsti/modelpacks/legacy/stdQT_XYIMS.py,sha256=CphB4R2vQPoUV0bdCf-2ttiI3Qvee4PSXmusab7ZX-A,21235
378
368
  pygsti/models/__init__.py,sha256=WQSVoW7bNOiZQGkbD-JOFFu4Ngk4R3sP1Mgq7FBx_N4,1146
379
- pygsti/models/cloudnoisemodel.py,sha256=rns8W35K1cTl4UdnURF9bNpKZ73RtANQP0I23g9yZdA,41675
380
- pygsti/models/explicitcalc.py,sha256=km-iAjOcFdddsnnH7-cVtLoEP9_twgXs1Pa016v3pwQ,43347
381
- pygsti/models/explicitmodel.py,sha256=vEoIWncQpXwDqg5Yrzs5wYFJWK9fSO6ay5MhK6b1Upo,79885
382
- pygsti/models/fogistore.py,sha256=oAyh7xV68zIuJIVRqFtUVYNxNHU5oHaxZXyumWpE2t4,33429
369
+ pygsti/models/cloudnoisemodel.py,sha256=Am5IVAepgkkWSn0yNTKMp5TuWmTcEE3u0NabzFF-SWY,41591
370
+ pygsti/models/explicitcalc.py,sha256=948qy1IavtaiJOlxU5vP02-j5fjqI2AcnPDKfrSdukE,43341
371
+ pygsti/models/explicitmodel.py,sha256=T9n5lzBw055wk-sKAClmoFqo7IQ7Fbt41XJL-t4dSJU,79250
372
+ pygsti/models/fogistore.py,sha256=TqYb6014Q6a4eJNK20W1TmqpnbW2r08LO2G4hfupFsk,33499
383
373
  pygsti/models/gaugegroup.py,sha256=sH8Q8L3G7W5KhpXwOxATkxXf-diHQCjWCeSl8Lpw7kI,36476
384
374
  pygsti/models/implicitmodel.py,sha256=_iCu2g8Su8PdRnBBs67_YGxPFWWeDXDMu3q3IfFMZhQ,17889
385
375
  pygsti/models/layerrules.py,sha256=yZK0xKXmPhrN2o-21_J-yW1AlZm0qEkvT0NLHuWrZEY,4585
386
- pygsti/models/localnoisemodel.py,sha256=_B__kCmI0tkoywRw2NkYCCKt9CnetBOHI0-yDbj063k,35638
387
- pygsti/models/memberdict.py,sha256=CTPV-DWx543gwyWqUPyjZojmuo_sWYcPp_cLN_nsqq4,18785
388
- pygsti/models/model.py,sha256=MQ_Y9O-lyZcenDrQMnW7_M97gVE0v76TU_IjnGYSFwg,104863
389
- pygsti/models/modelconstruction.py,sha256=8FOh1F7mHyRvj53ryZ4B0yAYoJxIOGWz475TIz25czg,140664
390
- pygsti/models/modelnoise.py,sha256=SXKhh6fnsr0wXwULzpBaDT61oYuW-VqTdNCmDyN8s58,52826
391
- pygsti/models/modelparaminterposer.py,sha256=VBqO8OgOK6J4c1VNJqNIM9gbo7g89U1xcFvLlvqpIAs,4447
392
- pygsti/models/oplessmodel.py,sha256=ImxQ2KLsgH9ld2XDarwVsAmTlPkZLBXkpruj86Ta7lk,36256
393
- pygsti/models/qutrit.py,sha256=7x-FrjJuSHYAvx0EnG8UOL93vOnazE2GIXRFPXCNuFo,9915
376
+ pygsti/models/localnoisemodel.py,sha256=mb4LfBLOkSYUDOXdbVqi3WNoNSztHhXh88jHmQFYgfI,35554
377
+ pygsti/models/memberdict.py,sha256=7sC66s21AVufjdyaUNazQmJg2LXbkJMd26IJBmaiYcM,18244
378
+ pygsti/models/model.py,sha256=bEZZlOdsvO5hOk8rh1NH4ziCUCM3fw0ftD1p9g6CkIg,142489
379
+ pygsti/models/modelconstruction.py,sha256=xYF75LQe0LJ8Dwan21tyeI15fWhsC4C9shqQE5uxuaE,140729
380
+ pygsti/models/modelnoise.py,sha256=uQUgbQdmWc7h-74bwHWUS6sV5AvwNoICj62Ac-Nge9U,52826
381
+ pygsti/models/modelparaminterposer.py,sha256=lMg-KVpI_GIVkgtsn6H3lWubz4tnSSIJwhvgtQhdGQE,4467
382
+ pygsti/models/oplessmodel.py,sha256=v9Hv3oXbgq5OYA_Fhyy4M_ptuxcBLP9dQGD0vJBcCTY,36254
383
+ pygsti/models/qutrit.py,sha256=6vOyGVX3uqRaE_XoqrmR7W6GcH4wamQsWImqpAJtp2I,9925
394
384
  pygsti/models/rpemodel.py,sha256=Rljrq7PoxECSr5zAYJEKsgP0ZWkeWOike7d4mPsBZos,10001
395
385
  pygsti/models/stencillabel.py,sha256=LN8uAod7rTkVfmLOprXXvOaR2CNWa07n97R7cTEav0I,16946
396
386
  pygsti/objectivefns/__init__.py,sha256=5rhgso18fxJdZnU_mT_3cbgkAj4db5YFJPhJA34erXY,1353
397
- pygsti/objectivefns/objectivefns.py,sha256=G9EdM9U1mYMBD_g0jmUZtzOeek5QF2jH4YHEss8jrWU,292927
398
- pygsti/objectivefns/wildcardbudget.py,sha256=COZoII6KD1Q9cHId9EbQj2jK4TobZh8nWRGZ5u73W5E,52645
399
- pygsti/optimize/__init__.py,sha256=6a7sM22zbfngzbD9HrQiPwgQeXihNhVXDBOQTdqvxio,967
400
- pygsti/optimize/arraysinterface.py,sha256=as3GrKmcpdDmG6qD7kowyfheCe1kbVnu64VkLBqWFf0,44348
401
- pygsti/optimize/customcg.py,sha256=YGhqbVW2MEw8XKLYPEh-RJYo1sIkBN7a-9cLpGh86FY,10623
402
- pygsti/optimize/customlm.py,sha256=YVWwHhcNkkZ-lhWoRWtTAEP3ZwkZ4pdIoHwHBXmV3Ks,81213
403
- pygsti/optimize/customsolve.py,sha256=FnQ-wX2tkkO0Rfh1T_sUJDZoNO1Ns6a3IT__6ej82cU,25650
404
- pygsti/optimize/optimize.py,sha256=cBa6XnUgnLR5mUDU2WKHUMc8V0HS6RRwD2q3Kicvppg,32364
405
- pygsti/optimize/wildcardopt.py,sha256=FJASlLARboRh4m7GxOCWv6R43G0Q9I_4Y7B10ldzNZ8,64097
387
+ pygsti/objectivefns/objectivefns.py,sha256=uPpVUWSszqRZgvENSYGA01q5C_Hk9wSPZevINjHF0nM,290702
388
+ pygsti/objectivefns/wildcardbudget.py,sha256=eWZiwrYo0MpmeJRVFPcGmZQW7pB9yYaTgKlt_uW4T9A,52444
389
+ pygsti/optimize/__init__.py,sha256=mIRuaKhWx5Oz5pSVa8Q3XdWZSz6t8Q8TMp0kmjfMxu8,993
390
+ pygsti/optimize/arraysinterface.py,sha256=Z2s6aIw05orLLez16-jrW99dWFvTCN4nfTYOZJJos2w,45245
391
+ pygsti/optimize/customcg.py,sha256=jFag_y38jO2HL6bHaWVyj11AgzuCNJfsAmaZUfn2cpQ,10150
392
+ pygsti/optimize/customlm.py,sha256=-9SzL3BfTupkm13Fg5lA2Rtu-qiDG0Q2FWon1RjBoVI,73628
393
+ pygsti/optimize/customsolve.py,sha256=CQcWmG1GN4vfhC2I_kJsD_FEWvJxT-94ve9zrGm97Ak,25650
394
+ pygsti/optimize/optimize.py,sha256=-oGXrEEZCJk5Qp69qDClbJX_c7CYpK7rTZ8tXdMM-pQ,29465
395
+ pygsti/optimize/simplerlm.py,sha256=BF_UzUjDpbqoW2jCbPAH3J1qd8M8PunUb6LD17PHujo,39710
396
+ pygsti/optimize/wildcardopt.py,sha256=2ax2cScGY0IIxjF5TIxKg1FDOpQ0JVgfGe_sW5cUfg0,33739
406
397
  pygsti/processors/__init__.py,sha256=picA5bl9QVKwm8haFtHP90NpG6XoHow1nqWDidWU_9c,911
407
398
  pygsti/processors/compilationrules.py,sha256=ADR1sZlajM3J6tCGCp529hNOtummpPlu0lPQMN8MgGQ,69755
408
399
  pygsti/processors/processorspec.py,sha256=JUIBiDlsjwfYtVZrJT1cnGIQhrDTLFDXfpYFNzt0nkY,62171
409
400
  pygsti/protocols/__init__.py,sha256=xu2smS4Jic8ll1HQwDxEdNrPXc-3pvO5ZyNWa0rD0DU,993
410
- pygsti/protocols/confidenceregionfactory.py,sha256=t58aBUIvwcWp3_7T8QH41BCc_DltVqwYPaZmBQ0c5Ss,62423
411
- pygsti/protocols/estimate.py,sha256=v_xpLeHntrT5w76yTQtKQFV4e4q0867pjBDl57Mc_O4,41639
401
+ pygsti/protocols/confidenceregionfactory.py,sha256=r7MvGZP792bdh0bh0YZc7olJymy7pf1TtkTmnX5D2-0,63234
402
+ pygsti/protocols/estimate.py,sha256=lqjwqRXhb6DZKd5PnzFc4yurwRDVpSO_J-fQKpHpDDc,42380
412
403
  pygsti/protocols/freeformsim.py,sha256=Pwu3GzyQsJfejc_kvWfGlG13Z-McFb3MReJrzhztlzM,6290
413
- pygsti/protocols/gst.py,sha256=OGSUp4r_Az451vwsvefpw8jAhblnw0VjvG4tjN66p6M,162361
414
- pygsti/protocols/modeltest.py,sha256=cLqlrnLnygOqyNAgj-1BEpT0glb-C7c_ubrufLy_bhc,17902
415
- pygsti/protocols/protocol.py,sha256=bER8RP38wfluix1h0tF-PYdtlOQwMhuBUHDvqo44oDg,141688
416
- pygsti/protocols/rb.py,sha256=qTKM_V9hsue6T6IpG8h_LQxlcdGbFdiIop5LObmT_d8,75867
404
+ pygsti/protocols/gst.py,sha256=G3Gobzvhrv-xVOVpnBP8rR2mv8x-wtufHawHmJLKFHg,167234
405
+ pygsti/protocols/modeltest.py,sha256=roS-lja5LOtaH_8JHsPorCUimn4X9v415Q-fGTGfkCw,18114
406
+ pygsti/protocols/protocol.py,sha256=nzvN-xmHeIYxnvJBnOTFdZ3tc1pdYNOkedX7fWjoVng,140684
407
+ pygsti/protocols/rb.py,sha256=NrGos9NKcG8As0TZHGtfoukvMPJxBMlZqxEXRveHpKE,95161
417
408
  pygsti/protocols/rpe.py,sha256=NeQpFJ5y7I8gcLoAG8AU_u7Ih4K2DpoSbB8dRJeaTRM,10644
418
409
  pygsti/protocols/stability.py,sha256=iW68lBPnAFZD7QP8mQr1cx9cYlmrIoERFrlfAjF5Sm0,31941
419
- pygsti/protocols/treenode.py,sha256=PaofC5c2QAjiWOAfBKWFCqmfeCj611t2pdpJ3XDBnLQ,14093
420
- pygsti/protocols/vb.py,sha256=M86oLaLOgxMoGSWbbDPJ3VJNj3LTfgewtxHnEEDmsk4,55533
421
- pygsti/protocols/vbdataframe.py,sha256=erlWzgmpngFwz-k3mb8T06IMdXzoX2Txh0HryUnAhoc,23929
410
+ pygsti/protocols/treenode.py,sha256=-mBaFCc57CaUbxC3Kgj274kbs_b4rgnvdv38vWfdfhc,14275
411
+ pygsti/protocols/vb.py,sha256=SRI0hTQT3Y7Sc1_vzwUSOWl0miE8wvcMXYVhJ6ZeCGQ,49989
412
+ pygsti/protocols/vbdataframe.py,sha256=2RlvQk1Sl739lbQP2GWjcCfpAuiN1uCYEkcTUjjUFaU,23929
422
413
  pygsti/report/__init__.py,sha256=T_kSqi4qbvrEojcPQ6wkt9naoPTQ5VJOre5Eh_Nbtr4,999
423
414
  pygsti/report/autotitle.py,sha256=Wy85WGnOA1zDHdqehbehLoa15E47EdV0XlXzVERC9qg,5376
424
415
  pygsti/report/cell.py,sha256=KoUqDuJgnDNO4nq15qTHKU315Qoxdfd_zOkJ9uiyaBc,3307
425
416
  pygsti/report/colormaps.py,sha256=gPbeY4Xhm4IYBRZrUxB7ISOFPEGvfRca-ryyUCDLPn0,26549
426
417
  pygsti/report/convert.py,sha256=NSz65yG6Ij4FNXx4AhP4RGBxo9fcU1wz4Dk6NyHZRds,4169
427
- pygsti/report/factory.py,sha256=z28QEdSe13-yknOdUCjf-Uf_3XgzRD7wLhyWpvFSu6s,81108
418
+ pygsti/report/factory.py,sha256=YYzg5vSOUC6DgzPkNkapXihFlxr1exTJym9dVw0CPc0,80502
428
419
  pygsti/report/figure.py,sha256=dkR0Yz74dc0ztodOrku6iH-H_PEukw-_OHgk8lbVcX0,2695
429
- pygsti/report/fogidiagram.py,sha256=n-pCmspdYQPvwkRvLi632EzUnhj7cY8qpnoRL9W43oU,70242
420
+ pygsti/report/fogidiagram.py,sha256=K0jwiQBw2lbr5N25ztYu0UwCKbjSYH1KfdYSbrAIc08,69294
430
421
  pygsti/report/formatter.py,sha256=Q3o0fLNtmLv0JLlkgmysULbzfqlIE_83A3ZrIq7E1QQ,7710
431
422
  pygsti/report/formatters.py,sha256=pHA_G6JmOjANFauTC6dwgyfG94j1woDYEH8GgHEyz1E,11465
432
423
  pygsti/report/html.py,sha256=6NIIfHKUJI6djkrPxD8qU6g3zCIfuNEOFkAcNjTxhww,8845
433
424
  pygsti/report/latex.py,sha256=795EvcNgmYOahKW9sa0UXPeQsoBCwnDibQ9w8_nU6oo,9673
434
425
  pygsti/report/merge_helpers.py,sha256=idfcvtwvwfNzu2FqzyTE-LVYcwNDRCQlZFJY281NqUM,34351
435
- pygsti/report/modelfunction.py,sha256=P3DMqIc_d7GVa-tYa7tRGggmw6cdlLpy_lT_O7sK4tQ,17943
436
- pygsti/report/mpl_colormaps.py,sha256=vhr-iENy-piH1KjEn569g9B9UXxVyUqHAaH72p-DcAI,27145
426
+ pygsti/report/modelfunction.py,sha256=QajCnwVn0EHML4Mw9Kkee0Oy_8HlmNrwVcxEG4uvQdI,18638
427
+ pygsti/report/mpl_colormaps.py,sha256=_6h0ZoDIBDQWkoBCwbZ_F_TTAbBbHd7w-kGXmG-LtLQ,27143
437
428
  pygsti/report/notebook.py,sha256=wCQO9KNQdNjeBCP2Rpho4VLxfyePybsnOfHQEYZUAcg,11557
438
429
  pygsti/report/notebookcell.py,sha256=Gxt1Myf7-EFUgXSUYtXy9AkQu0joURA5jYT0JxTo2g4,2263
439
430
  pygsti/report/parse_notebook_text.py,sha256=D_H8sloFaA1LiR3ZtFBCwBCqlu4KnSeq8c8p13Mw2Jw,729
440
- pygsti/report/plothelpers.py,sha256=pdQQq6KHkvJpMI4IhVKJ-0yZhZJ2P8MLbEYQ0rjwILU,14194
431
+ pygsti/report/plothelpers.py,sha256=y_Lv7qBdr849T9Xi4e5-MyzgmSIoV50T6YiqCrIMeP8,14699
441
432
  pygsti/report/plotly_plot_ex.py,sha256=b5dw1RQuUD6u_JO2-y7luyIzwxfvB-m4p5Coq4MrSvQ,15472
442
433
  pygsti/report/python.py,sha256=whYXxUXsozNELAGrpg_Iy48J1QgVGGE1Ww0W3Iaibx0,6875
443
- pygsti/report/report.py,sha256=tHg-qs59KgjfuFKR4XSIP96RvJeMAwnko3LhwpPvlPY,19195
434
+ pygsti/report/report.py,sha256=bVLzpw1qjE3HkIP5ce476i1BLmHfRpOieZo40RNRCgY,20236
444
435
  pygsti/report/reportableqty.py,sha256=IGw15YFIOHUfKx-G3MDGGlSgxxYNR_F9qcF2Q4A5pvc,15812
445
- pygsti/report/reportables.py,sha256=ThcMpYFHYwQNTsAugNqykNc3tlA9htBHgEuEvuKZdh0,81135
436
+ pygsti/report/reportables.py,sha256=zNwnZYAQG9HqnFfXut7vHc9hTgkjNMpFr4B7m5JHZF4,81436
446
437
  pygsti/report/row.py,sha256=siez89hEvSgmqHZ9gGQ3HOs5la5tUbBGkr92V6kt9Vk,3885
447
438
  pygsti/report/table.py,sha256=5iNBnUnHoYaWxrI0HtXrT54FR0HixeEdFjHxCoKH-Zk,14090
448
439
  pygsti/report/textblock.py,sha256=AVw-hP3AuGvE9b_m1pyERoAcs8jVmKVxN_4eNvnmc98,5675
449
440
  pygsti/report/vbplot.py,sha256=FGNFdYgj9hsCsW0ln4z1uHVdCX2RrD74RmqlT_FcxUs,17444
450
- pygsti/report/workspace.py,sha256=55aM-L18BW2y0DqMUlrfGJD88_YCM0E5wyEO76FBHB4,139616
451
- pygsti/report/workspaceplots.py,sha256=RIaWNlUJWOFcHBWdjQFdQq00_3DRxKaaMDumfray3WA,172349
441
+ pygsti/report/workspace.py,sha256=tvjOl1UjR7r5gXzOOpjDKoq3k6BiGGpTTdHBBy2u1W0,139075
442
+ pygsti/report/workspaceplots.py,sha256=EefQRs-1encZlXrTSkBd0OGqxQ3S7Q46_YXgI4njKAo,168136
452
443
  pygsti/report/workspacetables.py,sha256=ft1hHdLrz4FYSS08FVYnYJ-0LpdLfHm2QhMjkTthRjY,161227
453
444
  pygsti/report/workspacetexts.py,sha256=JaLBdxs6403ZJ2TX_ti3TP70l3ywMm3a4alrlKouieI,1823
454
445
  pygsti/report/section/__init__.py,sha256=gUzL9PWjIZHwdG9VoQE90kwCkBJMBH0eocakVlrn7Ww,3784
@@ -482,8 +473,8 @@ pygsti/report/templates/offline/katex.css,sha256=HxAl2slnry8C_rlPSNxbQ_Ed_ijN-vj
482
473
  pygsti/report/templates/offline/katex.min.js,sha256=tHEncoLUHdQQxgKBkcjXxT97sdOH7GTuPTrxlb27rOM,126580
483
474
  pygsti/report/templates/offline/masonry.pkgd.min.js,sha256=CJTMYvjkBtEVzE-Ukei8UbcMbEkAVAH_fp59tiW9ufs,24090
484
475
  pygsti/report/templates/offline/plotly-latest.min.js,sha256=bGIO6smfRC2Kj7YICa6ZML9T3kzcf7pGywQnmYHqpv4,3310926
485
- pygsti/report/templates/offline/pygsti_dashboard.css,sha256=ZJCEfjJN6o0AiFFu2z0tKi_mRW_sI9w0L-GvDwWr-k8,12330
486
- pygsti/report/templates/offline/pygsti_dashboard.js,sha256=tSdaG4_kdz1HiY0h3dXQU0KndGVDye8HVJphIopKlrA,5699
476
+ pygsti/report/templates/offline/pygsti_dashboard.css,sha256=0a8P4PjkJnC18CkUkJeYyfn8S2qdSbIibSniEdJe67s,12408
477
+ pygsti/report/templates/offline/pygsti_dashboard.js,sha256=Hhd3W9Yxo-vnScns8JK4RRQWrdfb2dQSA370AzNPD4s,6301
487
478
  pygsti/report/templates/offline/pygsti_dataviz.css,sha256=x20cb6ePn5gk-RGad9nlriZqW3S8C9QCBkE-PLnHvtY,6836
488
479
  pygsti/report/templates/offline/pygsti_fonts.css,sha256=bCm4kHml9gqB48mOkxFtGR5YQs_dLOjuQIi7BjlT_Xg,1658
489
480
  pygsti/report/templates/offline/pygsti_plotly_ex.js,sha256=NKQE-e1hVlgq_0wqYKFRjfNp1-J4yhUtYIhTxLwbDtw,25902
@@ -622,41 +613,41 @@ pygsti/serialization/json.py,sha256=tC3ve9m9vLHbVu0S4lYlbGag-watkhwVp3JUbdrxj6I,
622
613
  pygsti/serialization/jsoncodec.py,sha256=d-t_sb1M29eC12vTNMO2HU8uh-3-DlhnD4I9ms1Epq4,22429
623
614
  pygsti/serialization/msgpack.py,sha256=l9i-r3-3ofQHb5fJiMjxYUv2XKhhNAWEEEFHNVb3Cjc,2995
624
615
  pygsti/tools/__init__.py,sha256=ZJBOH1JFVybTZ8Q-279JS_wRdiMaVN68s8SeJcHxHjQ,1467
625
- pygsti/tools/basistools.py,sha256=UaOt3QjQhv-YVaBWactRxrMTj9K6_Jx53VeUHQ90LY4,20761
616
+ pygsti/tools/basistools.py,sha256=Ue_zqHpYkMXxTb0zCNwbTcKxTwiPYiV4pjP3VnzrSio,19814
626
617
  pygsti/tools/chi2fns.py,sha256=_BcQfoGiEktP2rz717XUQ9jBgJvAUWZUEYfL5c6Dois,26618
627
618
  pygsti/tools/compilationtools.py,sha256=Hu2xKcF08NuX7A3lBkEQxe65xw__FUXPJWRgNlY1fO4,2444
628
619
  pygsti/tools/dataframetools.py,sha256=yATTX8na-aOA8BjZIChC2RbkFcyhNZjzD1iIoiCgTLw,2614
629
- pygsti/tools/edesigntools.py,sha256=g9BhJXNNxPoViZCEdQyZF3LhyjTFjsd2bFiGiQWdHC8,43030
620
+ pygsti/tools/edesigntools.py,sha256=ZWpLtYdZ95Dl1rL-yLyDk8fERi_pzfurcCBBFn5BAmU,45247
630
621
  pygsti/tools/exceptions.py,sha256=S3Fa9wuXFcFYiFmrRUYwavaezB7aZjnoccvKnpcUo5M,969
631
- pygsti/tools/fastcalc.cp310-win_amd64.pyd,sha256=s4TPU_tjoOBRVyAc7YSPXp_1R7eMWRtvYK7Sm6BNylY,177152
632
- pygsti/tools/fastcalc.pyx,sha256=bRsNrsJ8lv4fs4BjAB3D_EzHpSbStpLdiyN0tKteTb4,53227
622
+ pygsti/tools/fastcalc.cp310-win_amd64.pyd,sha256=snvJGDzMkL4VfSF_4Q_4_rSDmASjgBnJeFuyzoadSxM,281600
623
+ pygsti/tools/fastcalc.pyx,sha256=VUq_kO6qVpCGdOB8bbPoUX6U8admWvSeMVCrX1_J6fo,51640
633
624
  pygsti/tools/fogitools.py,sha256=45w42X_PaZOCq_8mfVGDOUeoPTmQEPQsMK0eufr3kJo,70689
634
625
  pygsti/tools/gatetools.py,sha256=UZxPtcR5QrhQr9mb8Erfg1VIBqVQ-WG4QRDGebNPTrU,4867
635
626
  pygsti/tools/group.py,sha256=aqQfaro676LrTzX732oz9MWgF3lJyKOjMfMOs7HkZHY,6663
636
627
  pygsti/tools/hypothesis.py,sha256=CpKBvbk5btHPiwIm4o59bClW5oIq1HCwku6mjIQA4_8,3499
637
- pygsti/tools/internalgates.py,sha256=L0-F1JmyoNc93_bhbmQ4pWDVsXBt_0Ue3hcbZE8bFhg,35947
638
- pygsti/tools/jamiolkowski.py,sha256=fCIOao7lBudnc8yBkjTMuGDMC5Vu1EUlHB8x-ICW5qk,20061
628
+ pygsti/tools/internalgates.py,sha256=ZxAo5FjpI4UsbVSAd8xzBWWb5vp1VVC0HRGtWa828oo,44318
629
+ pygsti/tools/jamiolkowski.py,sha256=OSU0M4REihayquaHwiBS3V3fMIWJMNpUNsNv2sLwdT4,20004
639
630
  pygsti/tools/legacytools.py,sha256=aAnWyqWfzminQZ3EdD42YgqW_mV01W4XgrG6vvZZzio,3634
640
631
  pygsti/tools/likelihoodfns.py,sha256=P1FLEXt2aTjeZpvWQO61vfHzNB8-3q2cNz9o960SR2E,47125
641
- pygsti/tools/lindbladtools.py,sha256=BGCLIt4RLMZt3eugmnX8_GMmpQxd3EHH1MrP4AP7MgE,10042
642
- pygsti/tools/listtools.py,sha256=SNvk7QL6ZNL92BcIfebzjZemwJ4uAWnQmR8PFMc-QhE,16429
643
- pygsti/tools/matrixmod2.py,sha256=rjBn6KYLtkV3U2lt1SFOGcVSqvRyFF75X0SdNqjT94U,13044
644
- pygsti/tools/matrixtools.py,sha256=u862006-QBa0k1gajQ2AbiwCZiq21PP4B8P62_8r3_0,88782
632
+ pygsti/tools/lindbladtools.py,sha256=ibh7VGde2jIaTijDEcjsZ4xLE2awMGGTW1WgMHVCjWI,10262
633
+ pygsti/tools/listtools.py,sha256=ORJy4C2lZyxiETpd1DlllbZRXBW2uhhV6vwneIp3-Vs,12216
634
+ pygsti/tools/matrixmod2.py,sha256=fAZvpUgpS9pK7tgLfWolaoUbFi4g92Ss9Tlcvvl8YFg,13043
635
+ pygsti/tools/matrixtools.py,sha256=THx4HWTQTZuFgUbpQD9u82HwoV1enywMMzpqb7sWPNY,83661
645
636
  pygsti/tools/mpitools.py,sha256=C3iLSsgmOmeifPu3x8hx53XbIl0QjNrEetrD828Gl3k,46963
646
637
  pygsti/tools/mptools.py,sha256=O6S1yL1SjovDS62dNP7PqkoZ2TM8qTI_2_yZOhgu4mw,1512
647
- pygsti/tools/nameddict.py,sha256=PV3I5-cut1I7Fev-LTxxBySjG_NrnICcrNKEvcs2QSE,9056
648
- pygsti/tools/optools.py,sha256=CyOLoxgNzk3_t2QvbJbabKY7mOCXAOe8ed3B7Jtx_Kw,100584
638
+ pygsti/tools/nameddict.py,sha256=w4exC3ECoMl0XPqUmLWpk1Y1iP53NnynwZf-xdJKriQ,9069
639
+ pygsti/tools/optools.py,sha256=OZ4Pmwx1Wc14aZbr6KvY_nvNK3MVTI1g2eUz9a4bPNE,103883
649
640
  pygsti/tools/opttools.py,sha256=9duGMnsLmD5rPbKqeRocsPA3HUcsn-eg7dbDfrTq6Mc,3567
650
- pygsti/tools/pdftools.py,sha256=2420AkyuVPqL2E5CoKiKHRHSGPkAz4tOwWJQa-nLKuI,3363
641
+ pygsti/tools/pdftools.py,sha256=3KddRwVU-vfXqM2rsE74H3yWRRQ07ygbwXIHZC8iusA,2648
651
642
  pygsti/tools/profile.py,sha256=A1WAShPtcRAOJo5jl4H8DPJe5yp-mpwk3KVdYJvRupQ,1656
652
- pygsti/tools/rbtheory.py,sha256=f5robfA0B4KVExlctEl4FAL1jetYoKWl0A9By8oWGzA,39877
643
+ pygsti/tools/rbtheory.py,sha256=345JbErLB6MUxqpPUZfK4cSQKbJTDCv63A_NMcrWB98,24709
653
644
  pygsti/tools/rbtools.py,sha256=iVhCbosXb0dKDAPg4OkwE3l3Qhw9wuvmtJ2HNNDYiCc,7506
654
645
  pygsti/tools/sharedmemtools.py,sha256=Cx5-_eDAKpohFh5yWwSZQYa3mSIk91h1omGPLCj0Ggg,7730
655
- pygsti/tools/slicetools.py,sha256=1ckwcq42kIXnm3he52VmCF9XFo6cWNyR-kdnGIkbaOg,10954
646
+ pygsti/tools/slicetools.py,sha256=t8FppiwWbbTzxpCt6AtHlLoinhfz7GTQjgoTrbxWBek,12299
656
647
  pygsti/tools/symplectic.py,sha256=E0fA2l50jsWx0YmyVhYDF_5p6Phrg7hxTF5567VqyBo,80409
657
648
  pygsti/tools/typeddict.py,sha256=KSgOL2cEeQNKkK7TIPscMKOz-vJ9Mk8BeIQ3Lwj5jY0,4462
658
- pyGSTi-0.9.12.dist-info/LICENSE,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560
659
- pyGSTi-0.9.12.dist-info/METADATA,sha256=dp6724WOyd2RVBV5ysYdK8F3rSlGlYuz8IetUrCVGG0,7589
660
- pyGSTi-0.9.12.dist-info/WHEEL,sha256=5JPYeYl5ZdvdSkrGS4u21mmpPzpFx42qrXOSIgWf4pg,102
661
- pyGSTi-0.9.12.dist-info/top_level.txt,sha256=zPqIouzZjncsQLp2H_Mpx3bzPNYcZliJ_36SWV9K0L0,7
662
- pyGSTi-0.9.12.dist-info/RECORD,,
649
+ pyGSTi-0.9.13.dist-info/LICENSE,sha256=Pd-b5cKP4n2tFDpdx27qJSIq0d1ok0oEcGTlbtL6QMU,11560
650
+ pyGSTi-0.9.13.dist-info/METADATA,sha256=qqo763EIIbIvVWvlyzc9wYbvZZYecfKnVsyIZTrfMgs,9163
651
+ pyGSTi-0.9.13.dist-info/WHEEL,sha256=rzGfZgUcGeKSgIHGYMuqg4xE4VPHxnaldXH6BG0zjVk,101
652
+ pyGSTi-0.9.13.dist-info/top_level.txt,sha256=zPqIouzZjncsQLp2H_Mpx3bzPNYcZliJ_36SWV9K0L0,7
653
+ pyGSTi-0.9.13.dist-info/RECORD,,