1 write to _edgeMap
Microsoft.Interop.SourceGeneration (1)
Marshalling\MarshallerHelpers.cs (1)
206_edgeMap = new bool[NodeCount * NodeCount];
4 references to _edgeMap
Microsoft.Interop.SourceGeneration (4)
Marshalling\MarshallerHelpers.cs (4)
218get => _edgeMap[to * NodeCount + from]; 219set => _edgeMap[to * NodeCount + from] = value; 222public bool AnyEdges => Array.IndexOf(_edgeMap, true) != -1; 228return Array.IndexOf(_edgeMap, true, to * NodeCount, NodeCount) != -1;