diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-21 21:05:58 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-21 21:05:58 +0200 |
commit | 0b9d87701328720558c2c7206c790ed1b17ce7bb (patch) | |
tree | f403b74219e9fd30a6ac01ab2ab3a8237cc6191c /tests/testthat/setup_script.R | |
parent | 23258f4aa2faceb7b7f23c5386b2803b3a8e16ca (diff) |
Explicit solution_type for FOCUS D in tests
Because on winbuilder obviously gcc was not found, so the Eigenvalue
based solution method was used, leading to a test failure when
comparing the summary, as the solution method is listed
Diffstat (limited to 'tests/testthat/setup_script.R')
-rw-r--r-- | tests/testthat/setup_script.R | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/testthat/setup_script.R b/tests/testthat/setup_script.R index c1d46dcb..d8d94d4b 100644 --- a/tests/testthat/setup_script.R +++ b/tests/testthat/setup_script.R @@ -45,9 +45,12 @@ SFO_SFO.ff <- mkinmod(parent = list(type = "SFO", to = "m1"), m1 = list(type = "SFO"), use_of_ff = "max", quiet = TRUE) -f_sfo_sfo <- mkinfit(SFO_SFO, +f_sfo_sfo_desolve <- mkinfit(SFO_SFO, subset(FOCUS_2006_D, value != 0), - quiet = TRUE) + solution_type = "deSolve", quiet = TRUE) +f_sfo_sfo_eigen <- mkinfit(SFO_SFO, + subset(FOCUS_2006_D, value != 0), + solution_type = "eigen", quiet = TRUE) f_sfo_sfo.ff <- mkinfit(SFO_SFO.ff, subset(FOCUS_2006_D, value != 0), |