Skip to content
New issue

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

Fix function name error in line 578 #273

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def P_Pauli2(s, t, m, n):
return result


def map_from_bloch_state_to_pauli2(q, n, arr):
def map_from_bloch_state_to_pauli_basis2(q, n, arr):

if arr.shape != (6, 6, 6, 6):
raise ValueError("Input array must be 6x6x6x6")
Expand Down