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)
218
get =>
_edgeMap
[to * NodeCount + from];
219
set =>
_edgeMap
[to * NodeCount + from] = value;
222
public bool AnyEdges => Array.IndexOf(
_edgeMap
, true) != -1;
228
return Array.IndexOf(
_edgeMap
, true, to * NodeCount, NodeCount) != -1;