Skip to content

Commit 8256cf0

Browse files
author
Andrew Johnson
committed
Remove vectorisation comment
1 parent f4aceb7 commit 8256cf0

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

basic_estimators/normal_censored.stan

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ parameters {
88
real mu;
99
}
1010
model {
11-
// Vectorization with truncation is not yet supported
1211
for (n in 1:N_observed)
1312
y[n] ~ normal(mu,1.0) T[,U];
1413
target += N_censored * normal_lccdf(U | mu, 1);

basic_estimators/normal_truncated.stan

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ parameters {
88
real<lower=0, upper=2> sigma;
99
}
1010
model {
11-
// Truncation not yet available with vectorised distributions
1211
for (n in 1:N)
1312
y[n] ~ normal(mu, sigma) T[,U];
1413
}

0 commit comments

Comments
 (0)