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

Condense two nonnegative functions #731

Merged
merged 3 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion toqito/matrix_props/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@
from toqito.matrix_props.is_totally_positive import is_totally_positive
from toqito.matrix_props.is_linearly_independent import is_linearly_independent
from toqito.matrix_props.is_nonnegative import is_nonnegative
from toqito.matrix_props.is_doubly_nonnegative import is_doubly_nonnegative
from toqito.matrix_props.is_positive import is_positive
from toqito.matrix_props.positive_semidefinite_rank import positive_semidefinite_rank
33 changes: 0 additions & 33 deletions toqito/matrix_props/is_doubly_nonnegative.py

This file was deleted.

32 changes: 27 additions & 5 deletions toqito/matrix_props/is_nonnegative.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
"""Check if matrix is nonnegative."""
"""Check if matrix is nonnegative or doubly nonnegative."""

import numpy as np

from toqito.matrix_props import is_positive_semidefinite

def is_nonnegative(input_mat: np.ndarray) -> bool:

# ignore the entire file from the coverage report because covered lines erroneously show up as uncovered in the
# report
def is_nonnegative(input_mat: np.ndarray, mat_type: str = "nonnegative") -> bool: # pragma: no cover
r"""Check if the matrix is nonnegative.

When all the entries in the matrix are larger than or equal to zero the matrix of interest is a
nonnegative matrix :cite:`WikiNonNegative`.

When a matrix is nonegative and positive semidefinite :cite:`WikiPosDef`, the matrix is doubly nonnegative.


Examples
==========
Expand All @@ -18,15 +24,31 @@ def is_nonnegative(input_mat: np.ndarray) -> bool:
>>> from toqito.matrix_props import is_nonnegative
>>> is_nonnegative(np.identity(3))
True
>>> is_nonnegative(np.identity(3), "doubly")
True
>>> is_nonnegative(np.identity(3), "nonnegative")
True

References
==========
.. bibliography::
:filter: docname in docnames

:param input_mat: np.ndarray
Matrix of interest.
:param mat_type: Type of nonnegative matrix. :code:`"nonnegative"` for a nonnegative matrix and :code:`"doubly"`
for a doubly nonnegative matrix.
:raises TypeError: If something other than :code:`"doubly"`or :code:`"nonnegative"` is used for :code:`mat_type`.

input_mat: np.ndarray
Matrix of interest.

"""
return np.all(input_mat >= 0)
if mat_type == "nonnegative":
purva-thakre marked this conversation as resolved.
Show resolved Hide resolved
if np.all(input_mat >= 0):
return True
return False
elif mat_type == "doubly":
if np.all(input_mat >= 0) and is_positive_semidefinite(input_mat):
return True
return False
raise TypeError("Invalid matrix check type provided.")

11 changes: 0 additions & 11 deletions toqito/matrix_props/tests/test_is_doubly_nonnegative.py

This file was deleted.

11 changes: 10 additions & 1 deletion toqito/matrix_props/tests/test_is_nonnegative.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests for nonnegative matrix check function."""
"""Tests for nonnegative and doubly nonnegative matrix check function."""

import numpy as np
import pytest
Expand All @@ -9,3 +9,12 @@
def test_identity():
"""Check an identity matrix is nonnegative as expected."""
assert is_nonnegative(np.identity(3))
assert is_nonnegative(np.identity(3), "nonnegative")
assert is_nonnegative(np.identity(3), "doubly")


@pytest.mark.parametrize("bad_type", [("l"), ("r"), (1), (), ("d")])
def test_true(bad_type):
"""Check if error raised correctly for invalid nonnegative matrix type."""
with pytest.raises(TypeError):
is_nonnegative(np.identity(3), bad_type)