We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the BB84 basis states to states/. The BB84 basis states
states/
def bb84(): # Computational basis states |0>, |1>: e_0, e_1 = standard_basis(2) # Plus/minus basis |+>, |-> e_p, e_m = (e_0 + e_1) / np.sqrt(2), (e_0 - e_1) / np.sqrt(2) return [[e_0, e_1], [e_p, e_m]]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Add the BB84 basis states to
states/
. The BB84 basis statesThe text was updated successfully, but these errors were encountered: