Nothing
#' Code to use the lsoda package inline. Not directly called by the user.
#' @param ... arguments
#' @keywords internal
#' @rdname plugin
inlineCxxPlugin <- function(...) {
ismacos <- Sys.info()[["sysname"]] == "Darwin"
openmpflag <- if (ismacos) "" else "$(SHLIB_OPENMP_CFLAGS)"
plugin <- Rcpp::Rcpp.plugin.maker(include.before = '#include "lsoda.h"',
libs = paste(openmpflag,
"$(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)"),
package = "lsoda")
settings <- plugin()
settings$env$PKG_CPPFLAGS <- paste("-I../inst/include", openmpflag)
## if (!ismacos) settings$env$USE_CXX11 <- "yes"
settings
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.