Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
881 changes: 208 additions & 673 deletions examples/Untitled.ipynb

Large diffs are not rendered by default.

170 changes: 0 additions & 170 deletions examples/Untitled1.ipynb

This file was deleted.

4 changes: 2 additions & 2 deletions examples/demo.dyno
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
beta <- 0.98
delta <- 0.025
nss <- 0.33
eta <- 1.3
eta <- 1.
rho <- 0.5
alpha <- .33
alpha <- .37
khi <- (1-alpha)*(1-nss)^eta/nss*(1/beta-1+delta)/(1/beta-1+delta-delta*alpha)

# equations
Expand Down
2 changes: 1 addition & 1 deletion examples/example1.dyno
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ delta <- 0.025
nss <- 0.33
eta <- 1.0
alpha <- .32
rho <- .96
rho <- .9
chi <- (1-alpha)*(1-nss)^eta/nss*(1/beta-1+delta)/(1/beta-1+delta-delta*alpha)

# equations
Expand Down
1 change: 0 additions & 1 deletion examples/example1.mod
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ beta = 0.99;
delta = 0.02509;
psi = 0;
theta = 2.95;

phi = 0.1;

model;
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,12 @@
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.2.0",
"@jupyterlab/application": "^4.4.5",
"@jupyterlab/settingregistry": "^4.4.5"
"@jupyterlab/codemirror": "^4.4.5",
"@jupyterlab/settingregistry": "^4.4.5",
"@lezer/highlight": "^1.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.4.5",
Expand Down
10 changes: 7 additions & 3 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ watch = "jlpm watch & jupyter lab"
[dependencies]
jupyterlab = ">=4.0.0,<5"
jupyterlab_dyno = { path = "." }
dyno = ">=0.1.5.dev7"
nodejs = ">=24.4.0,<24.5"
jupyterlab-myst = ">=2.4.2,<3"
tempita = ">=0.6.0,<0.7"
vega_datasets = ">=0.9.0,<0.10"
interegular = ">=0.3.3,<0.4"
altair = ">=5.5.0,<6"
rich = ">=14.1.0,<15"
comm = ">=0.2.3,<0.3"

[package]
name = "jupyterlab_dyno"
Expand All @@ -30,9 +33,10 @@ hatch-jupyter-builder = ">=0.5.0"
nodejs = ">=24.4.0,<24.5"
jupyterlab = ">=4.0.0,<5"


[package.run-dependencies]
dyno = { path = "/home/pablo/Econforge/dyno.py"}
#dyno = ">=0.1.5.dev7"
#dyno = { path = "/home/pablo/Econforge/dyno.py" }
dyno = ">=0.1.6"
#dyno = ">=0.1.6"
xeus-python = ">=0.17.4,<0.18"
nlohmann_json = "==3.12"
Loading