Nothing
# TSP::solve_TSP(...) =>
#
# with(doFuture::registerDoFuture(flavor = "%dofuture%"), local({
# options(future.disposable = structure(OPTS, dispose = FALSE))
# on.exit(options(future.disposable = NULL))
# TSP::solve_TSP(...)
# }))
#
append_transpilers_for_TSP <- function() {
transpilers <- make_package_transpilers("TSP", FUN = function(fcn, name) {
if (name %in% c("solve_TSP")) {
list(
label = sprintf("TSP::%s() ~> TSP::%s()", name, name),
transpiler = make_futurize_for_doFuture(defaults = list(seed = TRUE))
)
}
})
append_transpilers("futurize::add-on", transpilers)
## Return required packages
c("TSP", "doFuture")
}
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.