Skip to content

Commit

Permalink
Workaround 'nocmodl` naming clash.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Jan 10, 2024
1 parent 5b15b78 commit 3c5d7e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/usecases/cnexp_array/leonhard.mod
Expand Up @@ -9,13 +9,13 @@ ASSIGNED {

STATE {
x
y[2]
s[2]
}

INITIAL {
x = 42.0
y[0] = 0.1
y[1] = -1.0
s[0] = 0.1
s[1] = -1.0
z[0] = 0.7
z[1] = 0.8
z[2] = 0.9
Expand All @@ -26,5 +26,5 @@ BREAKPOINT {
}

DERIVATIVE dX {
x' = (y[0] + y[1])*(z[0]*z[1]*z[2])*x
x' = (s[0] + s[1])*(z[0]*z[1]*z[2])*x
}

0 comments on commit 3c5d7e8

Please sign in to comment.