### =========================================================================
### UGraph objects (undirected graphs)
### -------------------------------------------------------------------------
setClass("UGraph", contains="DGraph")
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Constructor
###
UGraph <- function(nodes, from=integer(0), to=integer(0), ...)
{
new2("UGraph", DGraph(nodes, from, to, ...), check=FALSE)
}
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Coercion
###
setAs("SelfHits", "UGraph", function(from) as(as(from, "DGraph"), "UGraph"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.