Skip to content

Commit

Permalink
refactor: made finite_differences a private utility module for now
Browse files Browse the repository at this point in the history
  • Loading branch information
MothNik committed May 20, 2024
1 parent 907baa4 commit face185
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion chemotools/utils/_whittaker_base/initialisation.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 finite_differences as fdiff
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 tests/test_for_utils/test_finite_differences.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import numpy as np
import pytest

from chemotools.utils.finite_differences import (
from chemotools.utils._finite_differences import (
calc_forward_diff_kernel,
gen_squ_fw_fin_diff_mat_cho_banded,
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_for_utils/utils_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from scipy.sparse import diags as sp_diags
from scipy.sparse import linalg as spla

from chemotools.utils.finite_differences import calc_forward_diff_kernel
from chemotools.utils._finite_differences import calc_forward_diff_kernel
from chemotools.utils._whittaker_base import WhittakerLikeSolver

### Utility Functions ###
Expand Down

0 comments on commit face185

Please sign in to comment.