Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
venpopov committed Feb 13, 2024
2 parents ae44ec2 + f8c9f4e commit fcfbe63
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
^doc$
^Meta$
^dev_utils$
^index.md$
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bmm
Title: Easy and Accesible Bayesian Measurement Models using 'brms'
Version: 0.2.0
Version: 0.2.1
Authors@R: c(
person("Vencislav", "Popov", , "[email protected]", role = c("aut", "cre", "cph")),
person("Gidon", "Frischkorn", , "[email protected]", role = c("aut", "cph")))
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# bmm 0.2.1

### Bug Fixes



# bmm 0.2.0

### New features
Expand Down
2 changes: 1 addition & 1 deletion inst/stan_chunks/sdmSimple_funs.stan
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
int L = min_val;
int R = max_val;
while(L < R) {
mid_p = (R-L)/2;
mid_p = (R-L) %/% 2;
if (L + mid_p < x) {
L += mid_p + 1;
} else if (L + mid_p > x) {
Expand Down

0 comments on commit fcfbe63

Please sign in to comment.