- using R version 4.6.0 (2026-04-24 ucrt)
- using platform: x86_64-w64-mingw32
- R was compiled by
gcc.exe (GCC) 14.3.0
GNU Fortran (GCC) 14.3.0
- running under: Windows Server 2022 x64 (build 20348)
- using session charset: UTF-8
* current time: 2026-06-04 11:32:19 UTC
- checking for file 'adea/DESCRIPTION' ... OK
- checking extension type ... Package
- this is package 'adea' version '1.5.2'
- package encoding: UTF-8
- checking package namespace information ... OK
- checking package dependencies ... OK
- checking if this is a source package ... OK
- checking if there is a namespace ... OK
- checking for hidden files and directories ... OK
- checking for portable file names ... OK
- checking whether package 'adea' can be installed ... OK
See the install log for details.
- checking installed package size ... OK
- checking package directory ... OK
- checking 'build' directory ... OK
- checking DESCRIPTION meta-information ... OK
- checking top-level files ... OK
- checking for left-over files ... OK
- checking index information ... OK
- checking package subdirectories ... OK
- checking code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [2s] OK
- checking whether the package can be loaded with stated dependencies ... [2s] OK
- checking whether the package can be unloaded cleanly ... [2s] OK
- checking whether the namespace can be loaded with stated dependencies ... [1s] OK
- checking whether the namespace can be unloaded cleanly ... [2s] OK
- checking loading without being on the library search path ... [2s] OK
- checking use of S3 registration ... OK
- checking dependencies in R code ... OK
- checking S3 generic/method consistency ... OK
- checking replacement functions ... OK
- checking foreign function calls ... OK
- checking R code for possible problems ... [8s] OK
- checking Rd files ... [1s] OK
- checking Rd metadata ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking contents of 'data' directory ... OK
- checking data for non-ASCII characters ... [0s] OK
- checking data for ASCII and uncompressed saves ... OK
- checking installed files from 'inst/doc' ... OK
- checking files in 'vignettes' ... OK
- checking examples ... [26s] ERROR
Running examples in 'adea-Ex.R' failed
The error most likely occurred in:
> ### Name: cadea
> ### Title: Make a constrained ADEA analysis
> ### Aliases: cadea
>
> ### ** Examples
>
> data('cardealers4')
> input <- cardealers4[, c('Employees', 'Depreciation')]
> output <- cardealers4[, c('CarsSold', 'WorkOrders')]
>
> # Compute adea model
> model <- adea(input, output)
> model
Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> # Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> # 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
>
> # Get input variable loads
> model$loads$input
Employees Depreciation
0.6666667 1.3333333
> # Employees Depreciation
> # 0.6666667 1.3333333
> # Get output variable loads
> model$loads$output
CarsSold WorkOrders
1.1025075 0.8974925
> # CarsSold WorkOrders
> # 1.2663476 0.7336524
>
> # Compute a constrained adea model to force load between .8 and 1.5
> cmodel <- cadea(input, output, load.min = .8, load.max = 1.5)
Warning in download.file(url = url, destfile = dest, method = method, cacheOK = FALSE, :
URL 'http://roi.r-forge.r-project.org/db/SOLVERS.rds': Timeout of 60 seconds was reached
Error in .ROI_available_solvers(method) :
The requested URL 'http://roi.r-forge.r-project.org' was not found.
Calls: cadea ... ROI_available_solvers.NULL -> .ROI_available_solvers
Execution halted
- checking for unstated dependencies in 'tests' ... OK
- checking tests ... [28s] ERROR
Running 'testthat.R' [27s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> library(testthat)
> library(adea)
Loading required package: rmarkdown
Loading required package: ROI.plugin.glpk
Loading required package: ROI.plugin.lpsolve
Loading required package: ROI.plugin.symphony
>
> test_check("adea")
Starting 2 test processes.
> testdemo.R:
> testdemo.R:
> testdemo.R: demo(cardealers)
> testdemo.R: ---- ~~~~~~~~~~
> testdemo.R:
> testdemo.R: > ## Load data
> testdemo.R: > data('cardealers4')
> testdemo.R:
> testdemo.R: > input <- cardealers4[, c('Employees', 'Depreciation')]
> testdemo.R:
> testdemo.R: > output <- cardealers4[, c('CarsSold', 'WorkOrders')]
> testdemo.R:
> testdemo.R: > ## Solve dea model using adea from adea package
> testdemo.R: > adea(input, output)
> testdemo.R: Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> testdemo.R: 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> testdemo.R:
> testdemo.R: > ## Solve again and store result in sol.dea
> testdemo.R: > sol.adea <- adea(input, output)
> testdemo.R:
> testdemo.R: > ## Scores
> testdemo.R: > sol.adea$eff
> testdemo.R: Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> testdemo.R: 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> testdemo.R:
> testdemo.R: > ## Weights
> testdemo.R: > cbind(sol.adea$ux, sol.adea$vy)
> testdemo.R: Employees Depreciation CarsSold WorkOrders
> testdemo.R: Dealer A 1.065648e-16 0.12500000 0.04712389 0.016592920
> testdemo.R: Dealer B 9.090909e-02 0.00000000 0.00000000 0.023809524
> testdemo.R: Dealer C 2.391250e-17 0.08333333 0.00000000 0.029761905
> testdemo.R: Dealer D -3.464649e-17 0.07692308 0.03461538 0.000000000
> testdemo.R: Dealer E 9.090909e-02 0.00000000 0.02500000 0.000000000
> testdemo.R: Dealer F -1.381410e-15
> testdemo.R: 0.05000000 0.01884956 0.006637168
> testdemo.R:
> testdemo.R: > ## Input variable loads
> testdemo.R: > sol.adea$loads$input
> testdemo.R: Employees Depreciation
> testdemo.R: 0.6666667 1.3333333
> testdemo.R:
> testdemo.R: > ## Output variable loads
> testdemo.R: > sol.adea$loads$output
> testdemo.R: CarsSold WorkOrders
> testdemo.R: 1.1025075 0.8974925
> testdemo.R:
> testdemo.R: > ## Model load
> testdemo.R: > sol.adea$loads$load
> testdemo.R: [1] 0.6666667
> testdemo.R:
> testdemo.R: > ## Compute all dea models in hierarchical way
> testdemo.R: > adea_hierarchical(input, output)
> testdemo.R: Loads nEfficients nVariables nInputs nOutputs Inputs
> testdemo.R: 4 0.6666667 2 4 2 2 Employees, Depreciation
> testdemo.R: 3 0.9575672 2 3 1 2 Depreciation
> testdemo.R: 2 1.0000000 1 2 1 1 Depreciation
> testdemo.R: Outputs
> testdemo.R: 4 CarsSold, WorkOrders
> testdemo.R: 3 CarsSold, WorkOrders
> testdemo.R: 2 CarsSold
> testdemo.R:
> testdemo.R: > ## Compute again and store result in sol.ah
> testdemo.R: > sol.ah <- adea_hierarchical(input, output)
> testdemo.R:
> testdemo.R: > ## Get the model with 3 variables
> testdemo.R: > sol.ah$models[[3]]
> testdemo.R: Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> testdemo.R: 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> testdemo.R:
> testdemo.R: > ## Get efficiencies for model with 3 variables
> testdemo.R: > sol.ah$models[[3]]$eff
> testdemo.R: Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> testdemo.R: 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> testdemo.R:
> testdemo.R: > ## Get input names in model with 3 variables
> testdemo.R: > sol.ah$inputnames[[3]]
> testdemo.R: [1] "Depreciation"
> testdemo.R:
> testdemo.R: > ## Get output namess in model with 3 variables
> testdemo.R: > sol.ah$outputnames[[3]]
> testdemo.R: [1] "CarsSold, WorkOrders"
> testdemo.R:
> testdemo.R: > ## Compute all dea models in parametric way
> testdemo.R: > adea_parametric(input, output)
> testdemo.R: Loads nEfficients nVariables nInputs nOutputs Inputs
> testdemo.R: 4 0.6666667 2 4 2 2 Employees, Depreciation
> testdemo.R: 3 0.9575672 2 3 1 2 Depreciation
> testdemo.R: 2 1.0000000 1 2 1 1 Depreciation
> testdemo.R: Outputs
> testdemo.R: 4 CarsSold, WorkOrders
> testdemo.R: 3 CarsSold, WorkOrders
> testdemo.R: 2 CarsSold
> testdemo.R:
> testdemo.R: > ## Compute again and store result in sol.ap
> testdemo.R: > sol.ap <- adea_parametric(input, output)
> testdemo.R:
> testdemo.R: > ## Get the model with 3 variables
> testdemo.R: > sol.ap$models[[3]]
> testdemo.R: Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> testdemo.R: 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> testdemo.R:
> testdemo.R: > ## Get efficiencies for model with 3 variables
> testdemo.R: > sol.ap$models[[3]]$eff
> testdemo.R: Dealer A Dealer B Dealer C Dealer D Dealer E Dealer F
> testdemo.R: 0.9915929 1.0000000 0.8928571 0.8653846 1.0000000 0.6515044
> testdemo.R:
> testdemo.R: > ## Get input names in model with 3 variables
> testdemo.R: > sol.ap$inputnames[[3]]
> testdemo.R: [1] "Depreciation"
> testdemo.R:
> testdemo.R: > ## Get output names in model with 3 variables
> testdemo.R: > sol.ap$outputnames[[3]]
> testdemo.R: [1] "CarsSold, WorkOrders"
> testcadea.R: Error in .ROI_available_solvers(method) :
> testcadea.R: The requested URL 'http://roi.r-forge.r-project.org' was not found.
Saving _problems/testcadea-9.R
Saving _problems/testcadea-10.R
Saving _problems/testcadea-11.R
Saving _problems/testcadea-12.R
[ FAIL 4 | WARN 1 | SKIP 56 | PASS 138 ]
══ Skipped tests (56) ══════════════════════════════════════════════════════════
• On CRAN (56): 'testadea.R:33:5', 'testadea.R:61:5', 'testadea.R:69:5',
'testadea.R:77:5', 'testadea.R:85:5', 'testadea.R:93:5', 'testdea.R:8:5',
'testdea.R:42:5', 'testdea.R:66:5', 'testdea.R:74:5', 'testdea.R:82:5',
'testdea.R:90:5', 'testdea.R:98:5', 'testdemo.R:20:5', 'testdemo.R:31:5',
'testfsdea.R:7:5', 'testfsdea.R:53:5', 'testfsdea.R:76:5',
'testfsdea.R:84:5', 'testfsdea.R:92:5', 'testfsdea.R:100:5',
'testfsdea.R:108:5', 'testfsdea.R:119:5', 'testfsdea.R:130:5',
'testfsdea.R:141:5', 'testfsdea.R:153:5', 'testfsdea.R:165:5',
'testhierarchical.R:37:5', 'testhierarchical.R:47:5',
'testhierarchical.R:59:5', 'testhierarchical.R:71:5',
'testhierarchical.R:83:5', 'testleverage.R:8:5', 'testleverage.R:18:5',
'testleverage.R:28:5', 'testleverage.R:38:5', 'testleverage.R:48:5',
'testleverage.R:58:5', 'testleverage.R:69:5', 'testparametric.R:38:5',
'testparametric.R:48:5', 'testparametric.R:60:5', 'testparametric.R:72:5',
'testparametric.R:84:5', 'testsolvers.R:19:5', 'testsolvers.R:26:5',
'testsolvers.R:34:5', 'testsolvers.R:42:5', 'testcadea.R:35:5',
'testcadea.R:44:5', 'testcadea.R:50:5', 'testcadea.R:79:5',
'testcadea.R:87:5', 'testcadea.R:95:5', 'testcadea.R:103:5',
'testcadea.R:111:5'
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure ('testcadea.R:9:5'): Test CADEA: General case (default orientation) and single bound ──
Expected `sol` to inherit from "cadea".
Actual class: "try-error".
── Failure ('testcadea.R:10:5'): Test CADEA: General case (default orientation) and single bound ──
Expected `sol` to have length 13.
Actual length: 1.
── Failure ('testcadea.R:11:5'): Test CADEA: General case (default orientation) and single bound ──
Expected `names(sol)` to equal `c(...)`.
Differences:
`actual` is NULL
`expected` is a character vector ('name', 'orientation', 'load.orientation', 'inputnames', 'outputnames', ...)
── Error ('testcadea.R:12:5'): Test CADEA: General case (default orientation) and single bound ──
Error in `sol$name`: $ operator is invalid for atomic vectors
Backtrace:
▆
1. └─testthat::expect_equal(sol$name, "Test cadea") at testcadea.R:12:5
2. └─testthat::quasi_label(enquo(object), label)
3. └─rlang::eval_bare(expr, quo_get_env(quo))
[ FAIL 4 | WARN 1 | SKIP 56 | PASS 138 ]
Error:
! Test failures.
Execution halted
- checking for unstated dependencies in vignettes ... OK
- checking package vignettes ... OK
- checking re-building of vignette outputs ... [3s] OK
- checking PDF version of manual ... [21s] OK
- checking HTML version of manual ... [10s] OK
- DONE
Status: 2 ERRORs