Class: RGL::DOT::Subgraph
Overview
A subgraph is a nested graph element and is the same as a Graph except that its header in dot notation has an identifier of subgraph instead of graph.
Instance Method Summary collapse
-
#initialize(params = {}, option_list = GRAPH_OPTS+GRAPH_OPTS_LGCY) ⇒ Subgraph
constructor
Creates a new Subgraph with the params Hash providing settings for all graph options.
Constructor Details
#initialize(params = {}, option_list = GRAPH_OPTS+GRAPH_OPTS_LGCY) ⇒ Subgraph
Creates a new Subgraph with the params Hash providing settings for all graph options. The option_list parameter restricts those options to list of valid names it contains. The exception to this is the elements option which, if specified, must be an Enumerable containing a list of nodes, edges, and/or subgraphs.
458 459 460 461 |
# File 'lib/rgl/rdot.rb', line 458 def initialize(params = {}, option_list = GRAPH_OPTS+GRAPH_OPTS_LGCY) super(params, option_list) @dot_string = 'subgraph' end |