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

DRAFT: Added elif statement MarginalizingNmat.solve to allow for 2D left_array #402

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from

Commits on Sep 26, 2024

  1. Added elif statement made by Kathrin Grunthal that is needed for Fe c…

    …alculation and OS statistics. We changed her original elif-condition from: elif right.ndim == 2 and left_array is not None and left_array.ndim == 2:, to: elif left_array is not None and right.ndim == left_array.ndim and right.ndim<=2:. This was done in order to include the case where both right and left_array have dimension 1, but they are not the same.
    JacobCT committed Sep 26, 2024
    Configuration menu
    Copy the full SHA
    24ef67e View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. Linted the code using Black.

    JacobCT committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    f8ee6df View commit details
    Browse the repository at this point in the history