Skip to content

Commit 79a6159

Browse files
committed
fix grgrjax dep + fix tests
1 parent a0ccd28 commit 79a6159

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

econpizza/examples/hank_with_comments.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ steady_state:
131131
B: 5.6 # bond supply
132132
# definitions can be recursive: theta is defined above
133133
mc: (theta-1)/theta # marginal costs
134-
#w: mc*z # wages
135-
#n: w**(1/sigma_l) # labor supply
136-
#div: 1 - w*n # dividends
137-
#z: y/n # technology
134+
w: (mc*y)**(sigma_l/(1+sigma_l)) # wages
135+
n: w**(1/sigma_l) # labor supply
136+
z: y/n # technology
137+
div: 1 - w*n # dividends
138138

139139
init_guesses:
140140
Rstar: 1.002 # steady state target rage
408 Bytes
Binary file not shown.
168 Bytes
Binary file not shown.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ubuntu seems to have issues with jax v0.4.6. Recheck when v0.4.7 is out
22
jax>=0.4.13
33
jaxlib>=0.4.13
4-
grgrjax>=0.4.3
4+
grgrjax>=0.4.4
55
scipy
66
pyyaml
77
pytest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
install_requires=[
3737
"jax>=0.4.13",
3838
"jaxlib>=0.4.13",
39-
"grgrjax>=0.4.3",
39+
"grgrjax>=0.4.4",
4040
"pyyaml",
4141
"scipy",
4242
],

0 commit comments

Comments
 (0)