7 references to GetCoreStateId
System.Text.RegularExpressions (7)
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Automata.cs (3)
200/// The core state ID can be looked up by the NFA ID with <see cref="GetCoreStateId(int)"/>. 309int coreId = GetCoreStateId(nfaStateId); 341MatchingState<TSet> coreState = GetState(GetCoreStateId(nfaStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.cs (2)
747int coreStateId = GetCoreStateId(targetStateId); 773MatchingState<TSet> endState = GetState(GetCoreStateId(endStateId));
System\Text\RegularExpressions\Symbolic\SymbolicRegexMatcher.Explore.cs (2)
67MatchingState<TSet>? coreState = args.Matcher.GetState(args.Matcher.GetCoreStateId(nfaId)); 85EnqueueIfUnseen(GetState(GetCoreStateId(nextNfaState)), seen, toExplore);