R/utils.R

Defines functions print.memorids_info

#' @export
print.memorids_info <- function(x, ...){
  cat("memorids info...\n")
  cat("  Number of adjectives              :", x$num_adjs, "\n")
  cat("  Number of nouns                   :", x$num_nouns, "\n")
  cat("  Number of combinations            :", x$num_combs, "\n")
  cat("  Max length of adjectives          :", x$max_len_adj, "\n")
  cat("  Max length of nouns               :", x$max_len_noun, "\n")
  cat("  Mean iterations before collision  :", x$mtbc, "\n")
  invisible(x)
}
sellorm/memorids documentation built on Dec. 22, 2020, 6:21 p.m.