File: print.BooleanStateInfo.R

package info (click to toggle)
r-cran-boolnet 2.1.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,016 kB
  • sloc: ansic: 12,452; sh: 16; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
# Custom print function for class BooleanStateInfo
print.BooleanStateInfo <- function(x, activeOnly=FALSE, ...)
{
  # Create a TransitionTable object and print it
  cat("Transition table of Boolean network\n\n")
   
  transitionTable <- .internal.getTransitionTable(x)
  
  print(transitionTable, activeOnly=activeOnly, ...)
}