R Under development (unstable) (2024-06-20 r86796 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > require(salad) Loading required package: salad Attaching package: 'salad' The following object is masked from 'package:stats': dnorm > > A <- prod(dual(1:5)) > A0 <- new("dual", x = 120, d = structure(list(x1 = 120, x2 = 60, x3 = 40, + x4 = 30, x5 = 24), class = "differential")) > > stopifnot(salad:::test_near_equality(A, A0, 0)) > > # mb <- microbenchmark::microbenchmark(prod(dual(1:5)), times = 1000) > # print(mb) > > proc.time() user system elapsed 0.31 0.03 0.28