1 write to Left
Microsoft.ML.Tokenizers (1)
Model\CodeGenTokenizer.cs (1)
1811Left = left;
16 references to Left
Microsoft.ML.Tokenizers (16)
Model\CodeGenTokenizer.cs (16)
1636if (symbols[top.Left].pieceSpan.Length == 0 || symbols[top.Right].pieceSpan.Length == 0 || 1637symbols[top.Left].pieceSpan.Length + symbols[top.Right].pieceSpan.Length != top.Length) 1643symbols[top.Left].pieceSpan = (symbols[top.Left].pieceSpan.Index, symbols[top.Left].pieceSpan.Length + symbols[top.Right].pieceSpan.Length); 1646symbols[top.Left].next = symbols[top.Right].next; 1650symbols[symbols[top.Right].next].prev = top.Left; 1655TryMerge(symbols[top.Left].prev, top.Left, text); 1656TryMerge(top.Left, symbols[top.Left].next, text); 1824return Left.CompareTo(other.Left); 1831hashCode = (hashCode * 37) + Left.GetHashCode(); 1837public bool Equals(SymbolPair other) => Left == other.Left && Score == other.Score;