Skip to content

Commit

Permalink
refactor: made banded_linalg private for now
Browse files Browse the repository at this point in the history
  • Loading branch information
MothNik committed May 20, 2024
1 parent 0699a7c commit 6ef864a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion chemotools/utils/_whittaker_base/auto_lambda/logml.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import numpy as np

from chemotools.utils import banded_linalg as bla
from chemotools.utils import _banded_linalg as bla
from chemotools.utils import models
from chemotools.utils._whittaker_base.auto_lambda.shared import get_smooth_wrss

Expand Down
2 changes: 1 addition & 1 deletion chemotools/utils/_whittaker_base/initialisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import numpy as np

from chemotools.utils import banded_linalg as bla
from chemotools.utils import _banded_linalg as bla
from chemotools.utils import finite_differences as fdiff
from chemotools.utils import models
from chemotools.utils.types import RealNumeric
Expand Down
2 changes: 1 addition & 1 deletion chemotools/utils/_whittaker_base/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from chemotools._runtime import PENTAPY_AVAILABLE
from chemotools.utils import models
from chemotools.utils.banded_linalg import LAndUBandCounts
from chemotools.utils._banded_linalg import LAndUBandCounts
from chemotools.utils._whittaker_base import auto_lambda as auto
from chemotools.utils._whittaker_base import initialisation as init
from chemotools.utils._whittaker_base import solvers
Expand Down
2 changes: 1 addition & 1 deletion chemotools/utils/_whittaker_base/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import numpy as np

from chemotools._runtime import PENTAPY_AVAILABLE
from chemotools.utils import banded_linalg as bla
from chemotools.utils import _banded_linalg as bla
from chemotools.utils import models

if PENTAPY_AVAILABLE:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_for_utils/test_banded_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import pytest
from scipy.linalg import solve_banded as scipy_solve_banded

from chemotools.utils.banded_linalg import (
from chemotools.utils._banded_linalg import (
_datacopied,
conv_upper_chol_banded_to_lu_banded_storage,
lu_banded,
Expand Down

0 comments on commit 6ef864a

Please sign in to comment.