diff --git a/Documentation/CHANGELOG.md b/Documentation/CHANGELOG.md index 282fb9d0c..c6c4b3667 100644 --- a/Documentation/CHANGELOG.md +++ b/Documentation/CHANGELOG.md @@ -45,6 +45,7 @@ Release Date: TBD * Remove or replace automated tests that depend on brittle simulation results. [#1148](https://github.com/econ-ark/HARK/pull/1148) * Updates asset grid constructor from `ConsIndShockModel.py` to allow for linearly-spaced grids when `aXtraNestFac == -1`. [#1172](https://github.com/econ-ark/HARK/pull/1172) * Renames `DiscreteDistributionXRA` to `DiscreteDistributionLabeled` and updates methods [#1170](https://github.com/econ-ark/HARK/pull/1170) +* Renames `HARK.numba` to `HARK.numba_tools` [#1183](https://github.com/econ-ark/HARK/pull/1183) ### 0.12.0 diff --git a/HARK/ConsumptionSaving/ConsIndShockModelFast.py b/HARK/ConsumptionSaving/ConsIndShockModelFast.py index b86c7c316..13c16cb2b 100644 --- a/HARK/ConsumptionSaving/ConsIndShockModelFast.py +++ b/HARK/ConsumptionSaving/ConsIndShockModelFast.py @@ -36,7 +36,7 @@ MargValueFuncCRRA, MargMargValueFuncCRRA, ) -from HARK.numba import ( +from HARK.numba_tools import ( CRRAutility, CRRAutilityP, CRRAutilityPP, @@ -45,7 +45,7 @@ CRRAutility_inv, CRRAutilityP_invP, ) -from HARK.numba import linear_interp_fast, cubic_interp_fast, linear_interp_deriv_fast +from HARK.numba_tools import linear_interp_fast, cubic_interp_fast, linear_interp_deriv_fast __all__ = [ "PerfForesightSolution", diff --git a/HARK/numba.py b/HARK/numba_tools.py similarity index 100% rename from HARK/numba.py rename to HARK/numba_tools.py