Replaces the BDMethodList list of methods in a BenchDesign object with a specified BDMethodList object.

BDMethodList(x) <- value

# S4 method for BenchDesign,BDMethodList
BDMethodList(x) <- value

Arguments

x

BenchDesign object.

value

BDMethodList list of methods.

Value

modified BenchDesign object

See also

Examples

bd <- BenchDesign() BDMethodList(bd) <- BDMethodList(avg = BDMethod(x = base::mean)) bd
#> BenchDesign ------------------------------------------------ #> benchmark data: #> NULL #> benchmark methods: #> method: avg; func: base::mean