Force using base order for RxODE radix sorting

forderForceBase(forceBase = FALSE)

Arguments

forceBase

boolean indicating if RxODE should use R's order() for radix sorting instead of data.table's parallel radix sorting.

Value

NILL; called for side effects

Examples

# \donttest{
forderForceBase(TRUE) # Use base `order` for RxODE sorts
#> NULL
forderForceBase(FALSE) # Use `data.table` for RxODE sorts
#> NULL
# }