Anders and Briegel in Python
				
			 
			
		 
		
		
		
		
		
		
			25'ten fazla konu seçemezsiniz
			Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- 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])
 
 
  |