Interface ISpatialGraph
A ISpatialGraph holds minimal required information of the graph and can be used for efficient
import, serialization and as basis for further operations (e.g. search algorithms).
Namespace: Mars.Common.Collections.Graph
Assembly: Mars.Common.dll
Syntax
public interface ISpatialGraph
Properties
| Improve this Doc View SourceEdges
Holds all nodes. Provides access over their internal keys (SpatialGraph-specific).
Declaration
IDictionary<int, EdgeData> Edges { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.Int32, EdgeData> |
NodesMap
Holds all nodes. Provides access over their internal keys (SpatialGraph-specific).
Declaration
IDictionary<int, NodeData> NodesMap { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.Int32, NodeData> |