R/setup.R

Defines functions .onUnload .onAttach

.onAttach <- function(libname, pkgname) {

  msg <- "\nWelcome to the deBif package for analysis of ordinary differential equations\nExecute the deBifHelp() function for instructions\nUse deBifReset() to reload the package in case of computational problems\n"

  options(stringsAsFactors=FALSE)
  packageStartupMessage(msg)
}

.onUnload <- function(libpath) {
  library.dynam.unload("deBif", libpath)
}
amderoos/deBif documentation built on Feb. 23, 2025, 5:54 a.m.