From 153985023de64ec79b3f04385d6308eaabddd599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateo=20Vel=C3=A1squez-Giraldo?= Date: Fri, 21 Oct 2022 05:14:40 -0400 Subject: [PATCH] Change the name of HARK.numba (#1183) * Change the name of HARK.numba * Update CHANGELOG.md --- Documentation/CHANGELOG.md | 1 + HARK/ConsumptionSaving/ConsIndShockModelFast.py | 4 ++-- HARK/{numba.py => numba_tools.py} | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename HARK/{numba.py => numba_tools.py} (100%) 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