Nothing
### INSTRUCTIONS:
## got to mathTestLists.R:
## enter each test as a list, with an informative name, NIMBLE expression to evaluate, vector of input dimensions, value of output dimension, and (if NIMBLE expression cannot be directly evaluated in R) the equivalent pure R expression whose result should match the NIMBLE result
source(system.file(file.path('tests', 'testthat', 'test_utils.R'), package = 'nimble'))
RwarnLevel <- options('warn')$warn
options(warn = 1)
nimbleVerboseSetting <- nimbleOptions('verbose')
nimbleOptions(verbose = FALSE)
source(system.file(file.path('tests', 'testthat', 'mathTestLists.R'), package = 'nimble'))
set.seed(0)
ans1 <- sapply(testsVaried, test_math, 'math') ## 12
ans2 <- sapply(testsBasicMath, test_math, 'math') ## 70
if(.Platform$OS.type == 'windows') {
message("Since you are running on Windows, tests stopped prior to reaching max DLL limit. Please use test-math2 to continue")
stop()
}
ans3 <- sapply(testsMoreMath, test_math, 'math') ## 41
ans4 <- sapply(testsReduction, test_math, 'math') ## 13
ans5 <- sapply(testsComparison, test_math, 'math')## 12
ans6 <- sapply(testsMatrix, test_math, 'math') ## 19
ans7 <- sapply(testsRecyclingRuleMatrices, test_math, 'math')
options(warn = RwarnLevel)
nimbleOptions(verbose = nimbleVerboseSetting)
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.