Click or drag to resize

GraphBase<TVertex, TEdge> Constructor (GraphBase<TVertex, TEdge>, Boolean, Boolean, Boolean)

Namespace:  SD.Tools.Algorithmia.Graphs
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.3.0 (1.3.18.0209)
Syntax
protected GraphBase(
	GraphBase<TVertex, TEdge> graph,
	bool isDirected,
	bool isCommandified,
	bool isSynchronized
)

Parameters

graph
Type: SD.Tools.Algorithmia.Graphs.GraphBase<TVertex, TEdge>
The graph.
isDirected
Type: System.Boolean
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: System.Boolean
If set to true, the graph is a commandified graph, which means all actions taken on this graph which mutate graph state are undoable.
isSynchronized
Type: System.Boolean
if set to true this list is a synchronized collection, using a lock on SyncRoot to synchronize activity in multithreading scenarios
See Also