Skip to content

Commit ccbf225

Browse files
authored
Merge pull request PSLmodels#1040 from rickecon/init_tr
Increase the maximum for init_guess_TR_SS
2 parents 1a943f4 + 4d911d2 commit ccbf225

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [0.14.5] - 2025-07-08 22:00:00
10+
11+
### Added
12+
13+
- Increases the maximum value of `initial_guess_TR_SS` in `default_parameters.json`
14+
915
## [0.14.4] - 2025-06-23 18:00:00
1016

1117
### Added
@@ -390,6 +396,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
390396
- Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier.
391397

392398

399+
[0.14.5]: https://github.com/PSLmodels/OG-Core/compare/v0.14.4...v0.14.5
393400
[0.14.4]: https://github.com/PSLmodels/OG-Core/compare/v0.14.3...v0.14.4
394401
[0.14.3]: https://github.com/PSLmodels/OG-Core/compare/v0.14.2...v0.14.3
395402
[0.14.2]: https://github.com/PSLmodels/OG-Core/compare/v0.14.1...v0.14.2

ogcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from ogcore.txfunc import *
2121
from ogcore.utils import *
2222

23-
__version__ = "0.14.4"
23+
__version__ = "0.14.5"

ogcore/default_parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4435,7 +4435,7 @@
44354435
},
44364436
"initial_guess_TR_SS": {
44374437
"title": "Initial guess of TR for the SS solution",
4438-
"description": "Initial guess of TR for the SS solution.",
4438+
"description": "Initial guess of TR for the SS solution. This value is in model units and can therefore be any large positive number. We may have to adjust the maximum for this parameter from time to time.",
44394439
"section_1": "Model Solution Parameters",
44404440
"notes": "",
44414441
"type": "float",
@@ -4447,7 +4447,7 @@
44474447
"validators": {
44484448
"range": {
44494449
"min": 0.0,
4450-
"max": 0.2
4450+
"max": 2.5
44514451
}
44524452
}
44534453
},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="ogcore",
8-
version="0.14.4",
8+
version="0.14.5",
99
author="Jason DeBacker and Richard W. Evans",
1010
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
1111
description="A general equilibrium overlapping generations model for fiscal policy analysis",

0 commit comments

Comments
 (0)