https://github.com/cran/dse
Raw File
Tip revision: 44dd1a830fc24e59474c3f3be207495991af41ad authored by Paul Gilbert on 25 November 2014, 08:49:25 UTC
version 2014.11-1
Tip revision: 44dd1a8
DSEflags.Rd
\name{DSEflags}
\alias{.DSEflags}
\title{Flags to Indicate Use of Compiled Code}
\description{
    Determines if compiled code should be used or not.
    }
\usage{
    .DSEflags(new)
    }
\arguments{
    \item{new}{A list which must have elements COMPILED and DUP.}
     }
\details{
    Setting flags with this function is primarily for debugging. It should not
    normally be needed by users.  If called with no arguments, 
    \code{.DSEflags()} returns the current setting.
    Several \pkg{dse} functions which call compiled fortran or C code will use
    the equivalent S/R version if the \code{.DSEflags()$COMPILED} returns 
    \code{FALSE}. 
    }
\section{Side Effects}{
    The flag setting affects whether compiled fortran or C code is
    called. 
    }
\examples{
    .DSEflags(list(COMPILED=TRUE))
    .DSEflags()$COMPILED
}
\concept{DSE}
\keyword{programming}


back to top