Skip to content

Commit

Permalink
This doesn't change anything
Browse files Browse the repository at this point in the history
  • Loading branch information
athowes committed Nov 15, 2024
1 parent d6a7d19 commit c194e1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion inst/stan/marginal_model/functions.stan
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
real primarycensored_wrapper_lpmf(data int d, real mu, real sigma, data real pwindow) {
int dist_id = 1; // lognormal
array[2] real params = {mu, sigma};
array[2] real params;
params[1] = mu;
params[2] = sigma;
int d_upper = d + 1;
int primary_id = 1; // Uniform
array[0] real primary_params;
Expand Down

0 comments on commit c194e1d

Please sign in to comment.