Checks whether a given cached fit can be used without refitting when
file_refit = "on_change" is used.
This function is internal and exposed only to facilitate debugging problems
with cached fits. The function may change or be removed in future versions
and scripts should not use it.
Usage
brmsfit_needs_refit(
fit,
sdata = NULL,
scode = NULL,
data = NULL,
algorithm = NULL,
silent = FALSE,
verbose = FALSE
)Arguments
- fit
Old
brmsfitobject (e.g., loaded from file).- sdata
New Stan data (result of a call to
standata). PassNULLto avoid this data check.- scode
New Stan code (result of a call to
stancode). PassNULLto avoid this code check.- data
New data to check consistency of factor level names. Pass
NULLto avoid this data check.- algorithm
New algorithm. Pass
NULLto avoid algorithm check.- silent
Logical. If
TRUE, no messages will be given.- verbose
Logical. If
TRUEdetailed report of the differences is printed to the console.