Skip to content

Commit

Permalink
Workaround 'nocmodl` naming clash. (#1135)
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Jan 11, 2024
1 parent e520d76 commit 369dff8
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 369dff8

Please sign in to comment.