Anders and Briegel in Python
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

test_measurement.py 160B

před 8 roky
12345678910
  1. from abp import GraphState
  2. def test_z_measurement():
  3. g = GraphState([0])
  4. assert g.measure_z(0, 0) == 0
  5. assert g.measure_z(0, 1) == 1
  6. # TODO