-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #399 from lucdw/master
Global switch (and function) to use lavaanC.
- Loading branch information
Showing
4 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
\name{lav_use_lavaanC} | ||
\alias{lav_use_lavaanC} | ||
\alias{uselavaanC} | ||
\title{use C++ code in lavaanC} | ||
\description{ | ||
Get or set switch to use the C++ code in lavaanC.} | ||
\usage{ | ||
lav_use_lavaanC(x) | ||
} | ||
\arguments{ | ||
\item{x}{Optional scalar logical to set the switch ON or OFF.} | ||
} | ||
\value{ | ||
If \code{x} is missing the current value of the switch (logical). | ||
If \code{x} is provided invisible(NULL). | ||
} | ||
\details{ | ||
The default value of the switch is ON (TRUE) if the \code{lavaanC} is available and | ||
OFF (FALSE) if it is not. The switch cannot be set to TRUE if \code{lavaanC} is not available | ||
(a warning message is issued). | ||
} | ||
\examples{ | ||
lav_use_lavaanC(FALSE) | ||
lav_use_lavaanC() | ||
lav_use_lavaanC(TRUE) | ||
lav_use_lavaanC() | ||
} |