Skip to content

Commit

Permalink
Fixed issue causing Solaris build to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
richarddmorey committed Feb 2, 2015
1 parent 51d4844 commit ba8f8c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/BayesFactor/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: BayesFactor
Type: Package
Title: Computation of Bayes Factors for Common Designs
Version: 0.9.10
Date: 2015-1-24
Version: 0.9.10-1
Date: 2015-2-2
Authors@R: c(person("Richard D.", "Morey", role = c("aut", "cre"), email =
"[email protected]"), person("Jeffrey N.", "Rouder", role = "aut",
email = "[email protected]"), person("Tahira", "Jamil", role = "ctb",
Expand Down
5 changes: 5 additions & 0 deletions pkg/BayesFactor/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
CHANGES IN BayesFactor VERSION 0.9.10-1

CHANGES
* Fixed issue causing Solaris build to fail

CHANGES IN BayesFactor VERSION 0.9.10

CHANGES
Expand Down
2 changes: 1 addition & 1 deletion pkg/BayesFactor/R/BayesFactorPCL-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#'regression, and contingency tables.
#'
#'\tabular{ll}{ Package: \tab BayesFactor\cr Type: \tab Package\cr Version: \tab
#'0.9.10\cr Date: \tab 2015-1-24\cr License: \tab GPL 2.0\cr LazyLoad: \tab
#'0.9.10-1\cr Date: \tab 2015-2-2\cr License: \tab GPL 2.0\cr LazyLoad: \tab
#'yes\cr } The following methods are currently implemented, with more to follow:
#'
#'general linear models (including linear mixed effects models): \code{\link{generalTestBF}}, \code{\link{lmBF}}
Expand Down
2 changes: 1 addition & 1 deletion pkg/BayesFactor/src/logSummaryStats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ List logSummaryStats(NumericVector x)
}

retM(0) = M.modulo();
retS(0) = S.modulo() - log(N - 1);
retS(0) = S.modulo() - log(N - 1.0);
return ret;
}

0 comments on commit ba8f8c4

Please sign in to comment.