R/model.factory.R

Defines functions modelEnable modelDisable

Documented in modelDisable modelEnable

modelDisable <- function(factory){
    command <- paste("UpdaterMethods.SetFactory('", factory,"');UpdaterMethods.Disable", sep = "")
    invisible(.CmdInterpreter(command))

}


modelEnable <- function(factory){
    command <- paste("UpdaterMethods.SetFactory('", factory,"');UpdaterMethods.Enable", sep = "")
    invisible(.CmdInterpreter(command))
}

Try the BRugs package in your browser

Any scripts or data that you put into this service are public.

BRugs documentation built on May 29, 2024, 9:38 a.m.