Skip to content

Commit

Permalink
fix stan input bug for unfixed params
Browse files Browse the repository at this point in the history
  • Loading branch information
teddygroves committed Oct 16, 2023
1 parent de1f2f0 commit ba18f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maud/getting_stan_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_fixed_param_input(
return {
"N_dgf_fixed": 0,
"dgf_fixed": [],
"ix_dgf_free": list(range(1, len(dgf.location) + 1)),
"ix_dgf_free": list(range(1, len(dgf.prior.location) + 1)),
"ix_dgf_fixed": [],
}
else:
Expand Down

0 comments on commit ba18f98

Please sign in to comment.