| GraphBaseTVertex, TEdge Constructor (Boolean, Boolean) | 
  
    Namespace: 
   SD.Tools.Algorithmia.Graphs
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.0.0 (1.3.17.0314)
Syntaxprotected GraphBase(
	bool isDirected,
	bool isCommandified
)
Protected Sub New ( 
	isDirected As Boolean,
	isCommandified As Boolean
)
Parameters
- isDirected
 - Type: SystemBoolean
if set to true, the graph is directed and only edges which have IsDirected set to true are allowed,
            otherwise it's a non-directed graph and edges which have IsDirected set to false are accepted. - isCommandified
 - Type: SystemBoolean
If set to true, the graph is a commandified graph, which means all actions taken on this graph which mutate 
            graph state are undoable. 
See Also