Nothing
update_package_version <- function()
{
dcf <- read.dcf(file = "DESCRIPTION", fields=c("Version", "RemoteSha"))
if (NROW(dcf) < 1L)
return(invisible())
dcf <- as.list(dcf[1L, ])
git_rev <- dcf$RemoteSha
if (is.na(git_rev))
git_rev <- "unknown"
git <- Sys.which("git")
if (git != "" && fs::file_exists(".git")
&& grepl("[0-9a-z]+$", system2(git, "describe --first-parent --always", stdout = TRUE), perl=TRUE)) {
git_rev <- system2(git, "describe --dirty --first-parent --always --exclude '*'", stdout = TRUE)
}
if (git_rev != "unknown") {
realversion <- paste0(dcf$Version, ".", git_rev)
cat(file='./R/version.R', sep='',
"#' A character string containing the version of `irace` including git SHA.\n#' @export\nirace_version <- '", realversion, "'\n")
}
invisible()
}
update_package_version()
# We define this tentatively to avoid: undefined exports: irace_version
irace_version <- "unknown"
.irace_tolerance <- sqrt(.Machine$double.eps)
.irace_minimum_saving_time <- 60 # seconds
# Prefix for printing messages to the user.
.irace_msg_prefix <- "== irace == "
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.