You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In [1]: import cirq
In [2]: q = cirq.NamedQubit('q')
In [3]: c = cirq.Circuit.from_ops(cirq.measure(q, key='a'), cirq.measure(q, key='a'))
In [4]: c
Out[4]: q: ───M('a')───M('a')───
In [5]: sim = cirq.Simulator()
In [6]: sim.run(c, repetitions=5)
Out[6]: a=0000000000
The text was updated successfully, but these errors were encountered:
Found by @Strilanc in review of #2114 .
To reproduce:
The text was updated successfully, but these errors were encountered: