From d432a48c8e7cc2df95d4952af415f18809f60409 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 24 Mar 2016 07:26:55 +0100 Subject: Address feedback from CRAN submission - Put the CRAN URL that the badge points to into canonical form. I had missed the requirement to use the canonical form before, as the R CMD check message complained about a (possibily) invalid URL, so I overlooked the explanation later in the check log. Thanks to Uwe for his patience. Fix checked with winbuilder. - Slightly reduced the build time for the compiled_models vignette by skipping the warm-up. 3 repetitions are necessary for the autoplot method to work --- vignettes/compiled_models.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vignettes/compiled_models.Rmd') diff --git a/vignettes/compiled_models.Rmd b/vignettes/compiled_models.Rmd index 8f6df55d..c668c5fd 100644 --- a/vignettes/compiled_models.Rmd +++ b/vignettes/compiled_models.Rmd @@ -55,7 +55,7 @@ mb.1 <- microbenchmark( solution_type = "eigen", quiet = TRUE), "deSolve, compiled" = mkinfit(SFO_SFO, FOCUS_2006_D, solution_type = "deSolve", quiet = TRUE), - times = 3, control = list(warmup = 1)) + times = 3, control = list(warmup = 0)) smb.1 <- summary(mb.1) print(mb.1) @@ -86,7 +86,7 @@ mb.2 <- microbenchmark( "deSolve, not compiled" = mkinfit(FOMC_SFO, FOCUS_2006_D, use_compiled = FALSE, quiet = TRUE), "deSolve, compiled" = mkinfit(FOMC_SFO, FOCUS_2006_D, quiet = TRUE), - times = 3, control = list(warmup = 1)) + times = 3, control = list(warmup = 0)) smb.2 <- summary(mb.2) print(mb.2) smb.2["median"]/smb.2["deSolve, compiled", "median"] -- cgit v1.2.1