├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── dependabot.yml └── workflows │ ├── main.yml │ └── publish-to-pypi.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamllint.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── codecov.yml ├── examples ├── README.md └── long_running.py ├── explanations ├── README.md └── function_representation.ipynb ├── pixi.lock ├── pyproject.toml ├── src └── lcm │ ├── Q_and_F.py │ ├── __init__.py │ ├── _config.py │ ├── argmax.py │ ├── dispatchers.py │ ├── entry_point.py │ ├── error_handling.py │ ├── exceptions.py │ ├── function_representation.py │ ├── functools.py │ ├── grid_helpers.py │ ├── grids.py │ ├── input_processing │ ├── __init__.py │ ├── create_params_template.py │ ├── model_processing.py │ └── util.py │ ├── interfaces.py │ ├── logging.py │ ├── mark.py │ ├── max_Q_over_a.py │ ├── max_Q_over_c.py │ ├── max_Qc_over_d.py │ ├── model_initialization.py │ ├── ndimage.py │ ├── next_state.py │ ├── py.typed │ ├── random.py │ ├── simulation │ ├── __init__.py │ ├── processing.py │ └── simulate.py │ ├── solution │ ├── __init__.py │ └── solve_brute.py │ ├── state_action_space.py │ ├── typing.py │ ├── user_model.py │ └── utils.py └── tests ├── __init__.py ├── conftest.py ├── data ├── analytical_solution │ ├── iskhakov_2017_five_periods__consumption.csv │ ├── iskhakov_2017_five_periods__values_retired.csv │ ├── iskhakov_2017_five_periods__values_worker.csv │ ├── iskhakov_2017_five_periods__work_decision.csv │ ├── iskhakov_2017_low_delta__consumption.csv │ ├── iskhakov_2017_low_delta__values_retired.csv │ ├── iskhakov_2017_low_delta__values_worker.csv │ └── iskhakov_2017_low_delta__work_decision.csv └── regression_tests │ ├── simulation.pkl │ └── solution.pkl ├── input_processing ├── __init__.py ├── test_create_params_template.py └── test_model_processing.py ├── simulation ├── __init__.py ├── test_processing.py └── test_simulate.py ├── solution ├── __init__.py └── test_solve_brute.py ├── test_Q_and_F.py ├── test_analytical_solution.py ├── test_argmax.py ├── test_dispatchers.py ├── test_error_handling.py ├── test_function_representation.py ├── test_functools.py ├── test_grid_helpers.py ├── test_grids.py ├── test_max_Q_over_a.py ├── test_max_Qc_over_d.py ├── test_model.py ├── test_model_methods.py ├── test_models ├── __init__.py ├── deterministic.py ├── discrete_deterministic.py ├── get_model.py └── stochastic.py ├── test_mypy_version_consistency.py ├── test_ndimage.py ├── test_ndimage_unit.py ├── test_next_state.py ├── test_random.py ├── test_regression_test.py ├── test_solution_and_simulation.py ├── test_solution_on_toy_model.py ├── test_state_action_space.py ├── test_stochastic.py └── test_utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/codecov.yml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/long_running.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/examples/long_running.py -------------------------------------------------------------------------------- /explanations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/explanations/README.md -------------------------------------------------------------------------------- /explanations/function_representation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/explanations/function_representation.ipynb -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/pixi.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/lcm/Q_and_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/Q_and_F.py -------------------------------------------------------------------------------- /src/lcm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/__init__.py -------------------------------------------------------------------------------- /src/lcm/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/_config.py -------------------------------------------------------------------------------- /src/lcm/argmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/argmax.py -------------------------------------------------------------------------------- /src/lcm/dispatchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/dispatchers.py -------------------------------------------------------------------------------- /src/lcm/entry_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/entry_point.py -------------------------------------------------------------------------------- /src/lcm/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/error_handling.py -------------------------------------------------------------------------------- /src/lcm/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/exceptions.py -------------------------------------------------------------------------------- /src/lcm/function_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/function_representation.py -------------------------------------------------------------------------------- /src/lcm/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/functools.py -------------------------------------------------------------------------------- /src/lcm/grid_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/grid_helpers.py -------------------------------------------------------------------------------- /src/lcm/grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/grids.py -------------------------------------------------------------------------------- /src/lcm/input_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/input_processing/__init__.py -------------------------------------------------------------------------------- /src/lcm/input_processing/create_params_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/input_processing/create_params_template.py -------------------------------------------------------------------------------- /src/lcm/input_processing/model_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/input_processing/model_processing.py -------------------------------------------------------------------------------- /src/lcm/input_processing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/input_processing/util.py -------------------------------------------------------------------------------- /src/lcm/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/interfaces.py -------------------------------------------------------------------------------- /src/lcm/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/logging.py -------------------------------------------------------------------------------- /src/lcm/mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/mark.py -------------------------------------------------------------------------------- /src/lcm/max_Q_over_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/max_Q_over_a.py -------------------------------------------------------------------------------- /src/lcm/max_Q_over_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/max_Q_over_c.py -------------------------------------------------------------------------------- /src/lcm/max_Qc_over_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/max_Qc_over_d.py -------------------------------------------------------------------------------- /src/lcm/model_initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/model_initialization.py -------------------------------------------------------------------------------- /src/lcm/ndimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/ndimage.py -------------------------------------------------------------------------------- /src/lcm/next_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/next_state.py -------------------------------------------------------------------------------- /src/lcm/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lcm/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/random.py -------------------------------------------------------------------------------- /src/lcm/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lcm/simulation/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/simulation/processing.py -------------------------------------------------------------------------------- /src/lcm/simulation/simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/simulation/simulate.py -------------------------------------------------------------------------------- /src/lcm/solution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lcm/solution/solve_brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/solution/solve_brute.py -------------------------------------------------------------------------------- /src/lcm/state_action_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/state_action_space.py -------------------------------------------------------------------------------- /src/lcm/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/typing.py -------------------------------------------------------------------------------- /src/lcm/user_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/user_model.py -------------------------------------------------------------------------------- /src/lcm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/src/lcm/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_five_periods__consumption.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_five_periods__consumption.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_five_periods__values_retired.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_five_periods__values_retired.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_five_periods__values_worker.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_five_periods__values_worker.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_five_periods__work_decision.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_five_periods__work_decision.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_low_delta__consumption.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_low_delta__consumption.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_low_delta__values_retired.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_low_delta__values_retired.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_low_delta__values_worker.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_low_delta__values_worker.csv -------------------------------------------------------------------------------- /tests/data/analytical_solution/iskhakov_2017_low_delta__work_decision.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/analytical_solution/iskhakov_2017_low_delta__work_decision.csv -------------------------------------------------------------------------------- /tests/data/regression_tests/simulation.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/regression_tests/simulation.pkl -------------------------------------------------------------------------------- /tests/data/regression_tests/solution.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/data/regression_tests/solution.pkl -------------------------------------------------------------------------------- /tests/input_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/input_processing/test_create_params_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/input_processing/test_create_params_template.py -------------------------------------------------------------------------------- /tests/input_processing/test_model_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/input_processing/test_model_processing.py -------------------------------------------------------------------------------- /tests/simulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/simulation/test_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/simulation/test_processing.py -------------------------------------------------------------------------------- /tests/simulation/test_simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/simulation/test_simulate.py -------------------------------------------------------------------------------- /tests/solution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/solution/test_solve_brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/solution/test_solve_brute.py -------------------------------------------------------------------------------- /tests/test_Q_and_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_Q_and_F.py -------------------------------------------------------------------------------- /tests/test_analytical_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_analytical_solution.py -------------------------------------------------------------------------------- /tests/test_argmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_argmax.py -------------------------------------------------------------------------------- /tests/test_dispatchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_dispatchers.py -------------------------------------------------------------------------------- /tests/test_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_error_handling.py -------------------------------------------------------------------------------- /tests/test_function_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_function_representation.py -------------------------------------------------------------------------------- /tests/test_functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_functools.py -------------------------------------------------------------------------------- /tests/test_grid_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_grid_helpers.py -------------------------------------------------------------------------------- /tests/test_grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_grids.py -------------------------------------------------------------------------------- /tests/test_max_Q_over_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_max_Q_over_a.py -------------------------------------------------------------------------------- /tests/test_max_Qc_over_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_max_Qc_over_d.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_model_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_model_methods.py -------------------------------------------------------------------------------- /tests/test_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_models/__init__.py -------------------------------------------------------------------------------- /tests/test_models/deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_models/deterministic.py -------------------------------------------------------------------------------- /tests/test_models/discrete_deterministic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_models/discrete_deterministic.py -------------------------------------------------------------------------------- /tests/test_models/get_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_models/get_model.py -------------------------------------------------------------------------------- /tests/test_models/stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_models/stochastic.py -------------------------------------------------------------------------------- /tests/test_mypy_version_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_mypy_version_consistency.py -------------------------------------------------------------------------------- /tests/test_ndimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_ndimage.py -------------------------------------------------------------------------------- /tests/test_ndimage_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_ndimage_unit.py -------------------------------------------------------------------------------- /tests/test_next_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_next_state.py -------------------------------------------------------------------------------- /tests/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_random.py -------------------------------------------------------------------------------- /tests/test_regression_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_regression_test.py -------------------------------------------------------------------------------- /tests/test_solution_and_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_solution_and_simulation.py -------------------------------------------------------------------------------- /tests/test_solution_on_toy_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_solution_on_toy_model.py -------------------------------------------------------------------------------- /tests/test_state_action_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_state_action_space.py -------------------------------------------------------------------------------- /tests/test_stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_stochastic.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenSourceEconomics/pylcm/HEAD/tests/test_utils.py --------------------------------------------------------------------------------