Skip to content

Commit 4c39379

Browse files
committed
Merge branch 'LTO_again'
2 parents 5b0c0df + b443d2e commit 4c39379

3 files changed

Lines changed: 22 additions & 21 deletions

File tree

DESCRIPTION

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: rstanarm
22
Type: Package
33
Title: Bayesian Applied Regression Modeling via Stan
4-
Version: 2.26.1
5-
Date: 2023-09-13
4+
Version: 2.32l1
5+
Date: 2024-01-15
66
Encoding: UTF-8
77
Authors@R: c(person("Jonah", "Gabry", email = "jsg2201@columbia.edu", role = "aut"),
88
person("Imad", "Ali", role = "ctb"),
@@ -42,7 +42,7 @@ Imports:
4242
Matrix (>= 1.2-13),
4343
nlme (>= 3.1-124),
4444
posterior,
45-
rstan (>= 2.26.1),
45+
rstan (>= 2.32.0),
4646
rstantools (>= 2.1.0),
4747
shinystan (>= 2.3.0),
4848
stats,
@@ -64,8 +64,9 @@ Suggests:
6464
StanHeaders (>= 2.21.0),
6565
testthat (>= 1.0.2),
6666
gamm4,
67-
shiny
68-
LinkingTo: StanHeaders (>= 2.21.0), rstan (>= 2.21.1), BH (>= 1.72.0-2), Rcpp (>=
67+
shiny,
68+
V8
69+
LinkingTo: StanHeaders (>= 2.32.0), rstan (>= 2.32.0), BH (>= 1.72.0-2), Rcpp (>=
6970
0.12.0), RcppEigen (>= 0.3.3.3.0), RcppParallel (>= 5.0.1)
7071
SystemRequirements: GNU make, pandoc (>= 1.12.3), pandoc-citeproc
7172
VignetteBuilder: knitr

R/doc-datasets.R

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,21 @@
8686
#'
8787
#' 304 obs. of 8 variables (\code{pbcLong}) and 40 obs. of 7 variables (\code{pbcSurv})
8888
#' \itemize{
89-
#' \item \code{age} {in years}
90-
#' \item \code{albumin} {serum albumin (g/dl)}
91-
#' \item \code{logBili} {logarithm of serum bilirubin}
92-
#' \item \code{death} {indicator of death at endpoint}
93-
#' \item \code{futimeYears} {time (in years) between baseline and
94-
#' the earliest of death, transplantion or censoring}
95-
#' \item \code{id} {numeric ID unique to each individual}
96-
#' \item \code{platelet} {platelet count}
97-
#' \item \code{sex} {gender (m = male, f = female)}
98-
#' \item \code{status} {status at endpoint (0 = censored,
99-
#' 1 = transplant, 2 = dead)}
100-
#' \item \code{trt} {binary treatment code (0 = placebo, 1 =
101-
#' D-penicillamine)}
102-
#' \item \code{year} {time (in years) of the longitudinal measurements,
103-
#' taken as time since baseline)}
89+
#' \item \code{age} in years
90+
#' \item \code{albumin} serum albumin (g/dl)
91+
#' \item \code{logBili} logarithm of serum bilirubin
92+
#' \item \code{death} indicator of death at endpoint
93+
#' \item \code{futimeYears} time (in years) between baseline and
94+
#' the earliest of death, transplantion or censoring
95+
#' \item \code{id} numeric ID unique to each individual
96+
#' \item \code{platelet} platelet count
97+
#' \item \code{sex} gender (m = male, f = female)
98+
#' \item \code{status} status at endpoint (0 = censored,
99+
#' 1 = transplant, 2 = dead)
100+
#' \item \code{trt} binary treatment code (0 = placebo, 1 =
101+
#' D-penicillamine)
102+
#' \item \code{year} time (in years) of the longitudinal measurements,
103+
#' taken as time since baseline)
104104
#' }
105105
#' }
106106
#'

src/Makevars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ STANHEADERS_SRC = $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "message()" -e
22

33
STANC_FLAGS = -DUSE_STANC3
44
PKG_CPPFLAGS = -I"../inst/include" -I"$(STANHEADERS_SRC)" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error $(STANC_FLAGS) -D_HAS_AUTO_PTR_ETC=0
5-
PKG_CXXFLAGS = $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "RcppParallel::CxxFlags()") $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "StanHeaders:::CxxFlags()")
5+
PKG_CXXFLAGS = $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "RcppParallel::CxxFlags()") $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "StanHeaders:::CxxFlags()") $(LTO)
66
PKG_LIBS = $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "RcppParallel::RcppParallelLibs()") $(shell "$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" -e "StanHeaders:::LdFlags()")
77
SHLIB_LDFLAGS = $(SHLIB_CXXLDFLAGS)
88
SHLIB_LD = $(SHLIB_CXXLD)

0 commit comments

Comments
 (0)