7 references to _nfaIdByCoreId
System.Text.RegularExpressions (7)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (5)
63/// The valid entries are 0 to the size of <see cref="_nfaIdByCoreId"/> - 1. 129if (!_nfaIdByCoreId.TryGetValue(state.Id, out int nfaState)) 221if (!_nfaIdByCoreId.TryGetValue(coreState.Id, out int nfaStateId)) 225nfaStateId = _nfaIdByCoreId.Count; 243_nfaIdByCoreId.Add(coreState.Id, nfaStateId);
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Explore.cs (2)
81int nfaOffset = DeltaOffset(_nfaIdByCoreId[state.Id], mintermId); 82int[] nextNfaStates = CreateNewNfaTransition(_nfaIdByCoreId[state.Id], mintermId, nfaOffset);