mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-29 20:14:08 +00:00
Stan fix for pystan 2.16
This commit is contained in:
parent
eecc1dd330
commit
a38aaa38c6
3 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ functions {
|
|||
for (i in 1:T) {
|
||||
while ((cp_idx <= S) && (t[i] >= t_change[cp_idx])) {
|
||||
a_row[cp_idx] = 1;
|
||||
cp_idx += 1;
|
||||
cp_idx = cp_idx + 1;
|
||||
}
|
||||
A[i] = a_row;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ functions {
|
|||
for (i in 1:T) {
|
||||
while ((cp_idx <= S) && (t[i] >= t_change[cp_idx])) {
|
||||
a_row[cp_idx] = 1;
|
||||
cp_idx += 1;
|
||||
cp_idx = cp_idx + 1;
|
||||
}
|
||||
A[i] = a_row;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ functions {
|
|||
for (i in 1:T) {
|
||||
while ((cp_idx <= S) && (t[i] >= t_change[cp_idx])) {
|
||||
a_row[cp_idx] = 1;
|
||||
cp_idx += 1;
|
||||
cp_idx = cp_idx + 1;
|
||||
}
|
||||
A[i] = a_row;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue