Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- import local_cliffords as lc
-
- def test_identify_pauli():
- assert lc.identify_pauli(lc.px) == "+x"
- assert lc.identify_pauli(-lc.px) == "-x"
- assert lc.identify_pauli(-lc.pz) == "-z"
-
- def test_get_action():
- assert lc.get_action(lc.i) == ("+x", "+y", "+z")
|