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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | from abp import GraphState
import mock
import pytest
ab = pytest.importorskip("ab")
REPEATS = 1000
def test_stabilizers_against_anders_and_briegel(n=10):
    """ Test that stabilizers are line-for-line equivalent """
    
    for i in list(range(REPEATS)):
        c = mock.random_stabilizer_circuit(n)
        g = ab.AndersWrapper(list(range(n)))
        g.act_circuit(c)
        da = g.get_full_stabilizer().to_dictionary()
        g = mock.ABPWrapper(list(range(n)))
        g.act_circuit(c)
        db = g.to_stabilizer().to_dictionary()
        assert da == db
def test_stabilizer_access():
    g = GraphState(3)
    print(g.to_stabilizer()[0, 0])
 |