Nothing
#' @title Part of
#'
#' @description Check if a node is part of a petri net
#'
#' @param node A node
#' @param PN A Petri Net
#'
#' @export part_of
part_of <- function(node, PN) {
if(node %in% transitions(PN)$id)
return(T)
else if(node %in% places(PN)$id)
return(T)
else
return(F)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.