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
Using
c3/c3/utils/qt_utils.py
Line 68 in 2b4625f
hilbert_space_kron(PAULIS["Z"], 1, dims=[3, 3]) has dimension 6, because PAULIS["Z"] has dimension 2 and is kroneckerd with an identity of dim 3.
hilbert_space_kron(PAULIS["Z"], 1, dims=[3, 3])
PAULIS["Z"]
The dimensions given in dims=[3, 3] should be respected to result in final dimension 9. The given operator should be extended to fit.
dims=[3, 3]
c3-toolset
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Using
c3/c3/utils/qt_utils.py
Line 68 in 2b4625f
To Reproduce
hilbert_space_kron(PAULIS["Z"], 1, dims=[3, 3])
has dimension 6, becausePAULIS["Z"]
has dimension 2 and is kroneckerd with an identity of dim 3.Expected behavior
The dimensions given in
dims=[3, 3]
should be respected to result in final dimension 9. The given operator should be extended to fit.Environment
c3-toolset
Version 1.2.2The text was updated successfully, but these errors were encountered: