R/erase_fit.R

Defines functions erase_fit

Documented in erase_fit

#' Erase the sevt fit
#'
#' @param object an object of class \code{sevt}
#' @return an object of class \code{sevt} without
#'         \code{prob} and \code{ll} field.
#' @keywords internal
erase_fit <- function(object) {
  object$ll <- NULL
  object$prob <- NULL
  return(object)
}
gherardovarando/stagedtrees documentation built on July 5, 2025, 12:35 a.m.