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