From b045466b39274c1911614402a619afb8b6f910f1 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Mon, 26 Nov 2018 13:07:29 +0100 Subject: See last commit log --- tests/testthat/test_irls.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testthat/test_irls.R b/tests/testthat/test_irls.R index 7784f578..a2b9688c 100644 --- a/tests/testthat/test_irls.R +++ b/tests/testthat/test_irls.R @@ -65,18 +65,18 @@ test_that("Reweighting method 'tc' works", { cores = if (Sys.getenv("TRAVIS") != "") 1 else 15) parms_2_10 <- apply(sapply(f_2_10, function(x) x$bparms.optim), 1, mean) parm_errors_2_10 <- (parms_2_10 - parms_DFOP_optim) / parms_DFOP_optim - expect_true(all(abs(parm_errors_2_10) < 0.4)) + expect_true(all(abs(parm_errors_2_10) < 0.45)) f_2_10_tc <- mmkin("DFOP", d_2_10, reweight.method = "tc", quiet = TRUE, cores = if (Sys.getenv("TRAVIS") != "") 1 else 15) parms_2_10_tc <- apply(sapply(f_2_10_tc, function(x) x$bparms.optim), 1, mean) parm_errors_2_10_tc <- (parms_2_10_tc - parms_DFOP_optim) / parms_DFOP_optim - expect_true(all(abs(parm_errors_2_10_tc) < 0.2)) + expect_true(all(abs(parm_errors_2_10_tc) < 0.25)) tcf_2_10_tc <- apply(sapply(f_2_10_tc, function(x) x$tc_fitted), 1, mean, na.rm = TRUE) tcf_2_10_error_model_errors <- (tcf_2_10_tc - c(0.5, 0.07)) / c(0.5, 0.07) - expect_true(all(abs(tcf_2_10_error_model_errors) < 0.35)) + expect_true(all(abs(tcf_2_10_error_model_errors) < 0.4)) f_tc_100_1 <- suppressWarnings(mkinfit(DFOP, d_100_1[[1]], reweight.method = "tc", quiet = TRUE)) parm_errors_100_1 <- (f_tc_100_1$bparms.optim - parms_DFOP_optim) / parms_DFOP_optim -- cgit v1.2.1